-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (26 loc) · 1.14 KB
/
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
from setuptools import setup, find_packages
setup(name='pfla',
version='1.0.0',
description='Python facial landmarking and analysis',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=['Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Scientific/Engineering :: Image Recognition'],
url='https://github.com/maxrousseau/pfla',
project_urls={
'Contribution guidelines':'https://github.com/maxrousseau/pfla/blob/master/contributing.md',
'Issue Tracker': 'https://github.com/maxrousseau/pfla/issues',
'Source Code': 'https://github.com/maxrousseau/pfla',
},
author='Maxime Rousseau',
author_email='maximerousseau08@gmail.com',
include_package_data=True,
license='MIT',
packages=find_packages(),
package_data={'pfla': ['/test/data/*.jpg']},
zip_safe=False,
entry_points={'console_scripts': ['pfla=pfla.cli:pfla']}
)