-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
62 lines (57 loc) · 1.93 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from setuptools import setup
import os
import pychubby
INSTALL_REQUIRES = [
"click>=7.0",
"matplotlib>=2.0.0",
"numpy>=1.16.4",
"opencv-python>=4.1.0.25",
"scikit-image",
]
if "RTD_BUILD" not in os.environ:
# ReadTheDocs cannot handle compilation
INSTALL_REQUIRES += ["dlib"]
LONG_DESCRIPTION = "Automated face warping tool"
PROJECT_URLS = {
"Bug Tracker": "https://github.com/jankrepl/pychubby/issues",
"Documentation": "https://pychubby.readthedocs.io",
"Source Code": "https://github.com/jankrepl/pychubby",
}
VERSION = pychubby.__version__
setup(
name="pychubby",
version=VERSION,
author="Jan Krepl",
author_email="kjan.official@gmail.com",
description="Automated face warping tool",
long_description=LONG_DESCRIPTION,
url="https://github.com/jankrepl/pychubby",
project_urls=PROJECT_URLS,
packages=["pychubby"],
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: C",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
("Programming Language :: Python :: " "Implementation :: CPython"),
],
python_requires='>=3.5',
install_requires=INSTALL_REQUIRES,
extras_require={
"dev": ["codecov", "flake8", "pydocstyle", "pytest>=3.6", "pytest-cov", "tox"],
"docs": ["sphinx", "sphinx_rtd_theme"],
},
entry_points={"console_scripts": ["pc = pychubby.cli:cli"]},
)