forked from containerbuildsystem/cachito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (44 loc) · 1.21 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
# SPDX-License-Identifier: GPL-3.0-or-later
from setuptools import setup, find_packages
setup(
name="cachito",
version="1.0",
long_description=__doc__,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
"celery<5",
"gitpython",
"kombu<5", # A celery dependency but it's directly imported
"packaging",
"pyarn",
"requests_kerberos",
"requests",
"semver",
"setuptools",
],
extras_require={
"web": [
"Flask",
"flask-login",
"Flask-Migrate",
"Flask-SQLAlchemy",
"psycopg2-binary",
],
},
entry_points={
"console_scripts": [
"cachito=cachito.web.manage:cli",
"cachito-cleanup=cachito.workers.cleanup_job:main",
"cachito-update-nexus-scripts=cachito.workers.nexus:create_or_update_scripts",
]
},
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
license="GPLv3+",
python_requires=">=3.6",
)