-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 779 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 779 Bytes
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
from setuptools import setup, find_packages
# To test locally: python setup.py sdist bdist_wheel
# To upload to pypi: twine upload dist/*
setup(
name='facemorpher',
version='5.2.dev0',
author='Alyssa Quek',
author_email='alyssaquek@gmail.com',
description=('Warp, morph and average human faces!'),
keywords='face morphing, averaging, warping',
url='https://github.com/alyssaq/face_morpher',
license='MIT',
packages=find_packages(),
install_requires=[
'docopt',
'numpy',
'scipy',
'matplotlib',
'dlib'
],
entry_points={'console_scripts': [
'facemorpher=facemorpher.morpher:main',
'faceaverager=facemorpher.averager:main'
]
},
data_files=[('readme', ['README.rst'])],
long_description=open('README.rst').read(),
)