forked from iitzco/faced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 905 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(name='faced',
version='0.1',
description='Face detection using deep learning',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Linguistic',
],
keywords='face detection deep learning cnn neural network',
url='http://github.com/iitzco/faced',
author='Ivan Itzcovich',
author_email='i.itzcovich@gmail.com',
license='MIT',
packages=['faced'],
scripts=["bin/faced"],
install_requires=required,
python_requires='>3.4',
include_package_data=True,
zip_safe=False)