-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
60 lines (52 loc) · 1.68 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
"""
Build and install the package.
"""
from os import path
from setuptools import find_packages, setup
NAME = "pykinship"
FULLNAME = "Facial Recognition Bias and the BFW Dataset"
AUTHOR = "Joseph Robinson"
AUTHOR_EMAIL = "[email protected]"
LICENSE = "MIT License"
URL = "https://github.com/visionjo/pykinship"
DESCRIPTION = "Automatic kinship recognition"
KEYWORDS = """
kinship faces recognition biometrics machinelearning deeplearning
computervision evaluation benchmark data imageset"""
dir_root = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(dir_root, "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
VERSION = "0.1.0"
PACKAGES = find_packages(exclude=["tests", "notebooks", "experiments"])
SCRIPTS = []
CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: {}".format(LICENSE),
]
PLATFORMS = ["osx", "linux"]
INSTALL_REQUIRES = []
if __name__ == "__main__":
setup(
name=NAME,
fullname=FULLNAME,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
version=VERSION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
url=URL,
platforms=PLATFORMS,
scripts=SCRIPTS,
packages=PACKAGES,
classifiers=CLASSIFIERS,
keywords=KEYWORDS,
install_requires=INSTALL_REQUIRES,
)