Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ff6a6e commit 1825371Copy full SHA for 1825371
setup.py
@@ -2,6 +2,7 @@
2
from setuptools import setup, find_packages
3
4
exec (open('plotly/version.py').read())
5
+exec (open('plotly/resources.py').read())
6
7
8
def readme():
@@ -33,6 +34,8 @@ def readme():
33
34
],
35
license='MIT',
36
packages=find_packages(),
37
+ data_files=[(GRAPH_REFERENCE_DIR, GRAPH_REFERENCE_FILES),
38
+ (WIDGETS_DIR, WIDGETS_FILES)],
39
package_data={'plotly': ['graph_reference/*.json', 'widgets/*.js']},
40
install_requires=['requests', 'six', 'pytz'],
41
extras_require={"PY2.6": ['simplejson', 'ordereddict',
0 commit comments