-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 1.36 KB
/
setup.py
File metadata and controls
44 lines (39 loc) · 1.36 KB
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
import sys
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
if sys.version_info < (3, 6, 0):
sys.exit('Python < 3.6.0 is not supported!')
setuptools.setup(
name="simple_face_alignment",
version="0.0.2",
author="Zhang, Chi",
author_email="[email protected]",
description="a simple implmentation for face align",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wrenchzc/simple-face-alignment",
packages=setuptools.find_packages(exclude=["tests.*", "tests"]),
install_requires=[
"opencv-python>=4.1.0"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
test_suite='pytest',
tests_require=['pytest'],
include_package_data=True,
keywords="face alignment",
)