-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
63 lines (53 loc) · 1.81 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
63
from setuptools import setup, find_packages
import sys
version = "0.0.13"
description = "A python package for face database management"
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
name = "FaceDB"
author = "sifat (shhossain)"
with open("requirements.txt") as f:
required = f.read().splitlines()
if sys.version_info < (3, 8):
required.append("typing_extensions")
keywords = ["python", "face", "recognition"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
"Topic :: Utilities",
"Operating System :: OS Independent",
]
projects_links = {
"Documentation": "https://github.com/shhossain/facedb",
"Source": "https://github.com/shhossain/facedb",
"Bug Tracker": "https://github.com/shhossain/facedb/issues",
}
setup(
name=name,
version=version,
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
author=author,
url="https://github.com/shhossain/facedb",
project_urls=projects_links,
packages=find_packages(),
install_requires=required,
keywords=keywords,
classifiers=classifiers,
python_requires=">=3.7",
include_package_data=True,
zip_safe=False,
)