forked from GibbsConsulting/django-plotly-dash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (38 loc) · 1.29 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
#!/usr/bin/env python
from setuptools import setup
import django_plotly_dash as dpd
VERSION = dpd.__version__
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',
],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
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",
},
install_requires = ['plotly',
'dash',
'dash-core-components',
'dash-html-components',
'dash-renderer',
'Django',],
python_requires=">=3",
)