Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8817481

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

File tree

Expand file treeCollapse file tree

1 file changed

+2
-9
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-9
lines changed

‎setup.py

Copy file name to clipboardExpand all lines: setup.py
+2-9Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.