Skip to content

Commit 8817481

Browse files
committed
Use find_packages() like all the cool kids do.
1 parent 80ebeb7 commit 8817481

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

setup.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from setuptools import setup
2+
from setuptools import setup, find_packages
23

34
exec (open('plotly/version.py').read())
45

@@ -31,15 +32,7 @@ def readme():
3132
'Topic :: Scientific/Engineering :: Visualization',
3233
],
3334
license='MIT',
34-
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'],
35+
packages=find_packages(),
4336
package_data={'plotly': ['graph_reference/*.json', 'widgets/*.js']},
4437
install_requires=['requests', 'six', 'pytz'],
4538
extras_require={"PY2.6": ['simplejson', 'ordereddict',

0 commit comments

Comments
 (0)