-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (44 loc) · 1.17 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
from setuptools import setup, find_packages
setup(
name="geant_argus",
version="0.23",
author="GEANT",
author_email="[email protected]",
description="Dashboard V3 framework",
url="https://github.com/GEANT/geant-argus",
package_dir={"": "src"},
packages=find_packages(where="src", exclude=("tests",)),
install_requires=[
"Django>=4.2.11,<5.1",
"argus-server",
"argus-htmx-frontend",
"django-widget-tweaks",
],
extras_require={
"prod": [
"gunicorn",
"uvicorn",
],
"dev": [
"black",
"coverage",
"python-dotenv",
"django-extensions",
"flake8",
"pytest",
"pytest-django",
"djlint",
],
},
include_package_data=True,
license="MIT",
license_files=("LICENSE.txt",),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.8",
)