forked from OmenApps/django-postgresql-dag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (47 loc) · 1.71 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
#!/usr/bin/env python
import os
from setuptools import setup
version = "0.3.2"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Database",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
]
root_dir = os.path.dirname(__file__)
if not root_dir:
root_dir = "."
long_desc = open(root_dir + "/README.md").read()
setup(
name="django-postgresql-dag",
version=version,
url="https://github.com/OmenApps/django-postgresql-dag",
project_urls={
"Documentation": "https://django-postgresql-dag.readthedocs.io/en/latest/",
"Source": "https://github.com/OmenApps/django-postgresql-dag",
"Tracker": "https://github.com/OmenApps/django-postgresql-dag/issues",
},
author="Jack Linke, et al.",
author_email="[email protected]",
license="Apache Software License",
packages=["django_postgresql_dag"],
package_dir={"django_postgresql_dag": "django_postgresql_dag"},
description="Directed Acyclic Graph implementation for Django & Postgresql",
classifiers=classifiers,
long_description_content_type="text/markdown",
long_description=long_desc,
extras_require={"transforms": ["networkx>=2.5", "pandas>=1.2"]},
)