-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (39 loc) · 1.46 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
import os
from setuptools import find_packages, setup
CURRENT_DIR = os.path.abspath(os.path.dirname(__file__))
PACKAGE_NAME = "gradgpad"
VERSION = open("gradgpad/VERSION", "r").read()
# The text of the README file
with open(os.path.join(CURRENT_DIR, "README.md")) as fid:
README = fid.read()
with open("requirements/requirements.txt") as f:
required = f.read().splitlines()
setup(
name=PACKAGE_NAME,
version=VERSION,
description="gradgpad",
long_description=README,
long_description_content_type="text/markdown",
keywords=["face-PAD", "framework", "evaluation"],
url="https://github.com/acostapazo/gradgpad",
author="ALiCE Biometrics",
author_email="[email protected]",
license="MIT",
install_requires=required,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6", # TO BE DEPRECATED
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
packages=find_packages(exclude=("tests*",)),
include_package_data=True,
zip_safe=False,
entry_points={"console_scripts": ["gradgpad=gradgpad.cli.command_line:main"]},
)