-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathsetup.py
37 lines (31 loc) · 951 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
setup(
name="Skin Detector",
version="1.0a Prototype",
url='',
author='Will Brennan',
author_email='[email protected]',
license='GPL',
install_requires=["numpy"], )
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='Skin Detector',
version='prototype',
description='A speedy skin-detector based upon colour thresholding',
long_description=readme,
author='WillBrennan',
author_email='[email protected]',
url='https://github.com/WillBrennan/SkinDetector',
license=license,
install_requires=required,
packages=find_packages(exclude=('tests', 'docs')))