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.
find_packages()
1 parent 80ebeb7 commit 8817481Copy full SHA for 8817481
setup.py
@@ -1,4 +1,5 @@
1
from setuptools import setup
2
+from setuptools import setup, find_packages
3
4
exec (open('plotly/version.py').read())
5
@@ -31,15 +32,7 @@ def readme():
31
32
'Topic :: Scientific/Engineering :: Visualization',
33
],
34
license='MIT',
- packages=['plotly',
35
- 'plotly/plotly',
36
- 'plotly/plotly/chunked_requests',
37
- 'plotly/graph_objs',
38
- 'plotly/grid_objs',
39
- 'plotly/widgets',
40
- 'plotly/matplotlylib',
41
- 'plotly/matplotlylib/mplexporter',
42
- 'plotly/matplotlylib/mplexporter/renderers'],
+ packages=find_packages(),
43
package_data={'plotly': ['graph_reference/*.json', 'widgets/*.js']},
44
install_requires=['requests', 'six', 'pytz'],
45
extras_require={"PY2.6": ['simplejson', 'ordereddict',
0 commit comments