forked from GibbsConsulting/django-plotly-dash
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (47 loc) · 1.52 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
#!/usr/bin/env python
from setuptools import setup
with open("django_plotly_dash/version.py") as f:
exec(f.read())
with open("README.md") as f:
long_description = f.read()
setup(
name="django-plotly-dash",
version=__version__,
url="https://github.com/GibbsConsulting/django-plotly-dash",
description="Django use of plotly dash apps through template tags",
long_description=long_description,
long_description_content_type="text/markdown",
author="Mark Gibbs",
author_email="[email protected]",
license="MIT",
packages=[
"django_plotly_dash",
"django_plotly_dash.migrations",
"django_plotly_dash.templatetags",
],
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Framework :: Dash",
],
keywords="django plotly plotly-dash dash dashboard",
project_urls={
"Source": "https://github.com/GibbsConsulting/django-plotly-dash",
"Tracker": "https://github.com/GibbsConsulting/django-plotly-dash/issues",
"Documentation": "http://django-plotly-dash.readthedocs.io/",
},
install_requires=[
"plotly",
"dash>=2.0,<2.15",
"dpd-components",
"dash-bootstrap-components",
"channels>=2.0",
"Django>=3.2,<5.0.0",
"Flask>=1.0.2",
"Werkzeug",
],
python_requires=">=3.8",
)