@@ -377,12 +377,12 @@ def run(self):
377
377
378
378
379
379
graph_objs_packages = [
380
- d [0 ] for d in os .walk ('plotly/graph_objs' )
380
+ d [0 ]. replace ( '/' , '.' ) for d in os .walk ('plotly/graph_objs' )
381
381
if not d [0 ].endswith ('__pycache__' )]
382
382
383
383
384
384
validator_packages = [
385
- d [0 ] for d in os .walk ('plotly/validators' )
385
+ d [0 ]. replace ( '/' , '.' ) for d in os .walk ('plotly/validators' )
386
386
if not d [0 ].endswith ('__pycache__' )]
387
387
388
388
versioneer_cmds = versioneer .get_cmdclass ()
@@ -413,23 +413,23 @@ def run(self):
413
413
license = 'MIT' ,
414
414
packages = ['plotly' ,
415
415
'plotlywidget' ,
416
- 'plotly/ plotly' ,
417
- 'plotly/ figure_factory' ,
418
- 'plotly/ offline' ,
419
- 'plotly/ io' ,
420
- 'plotly/ matplotlylib' ,
421
- 'plotly/ matplotlylib/ mplexporter' ,
422
- 'plotly/ matplotlylib/ mplexporter/ renderers' ,
416
+ 'plotly. plotly' ,
417
+ 'plotly. figure_factory' ,
418
+ 'plotly. offline' ,
419
+ 'plotly. io' ,
420
+ 'plotly. matplotlylib' ,
421
+ 'plotly. matplotlylib. mplexporter' ,
422
+ 'plotly. matplotlylib. mplexporter. renderers' ,
423
423
'chart_studio' ,
424
- 'chart_studio/ api' ,
425
- 'chart_studio/ api/ v1' ,
426
- 'chart_studio/ api/ v2' ,
427
- 'chart_studio/ dashboard_objs' ,
428
- 'chart_studio/ grid_objs' ,
429
- 'chart_studio/ plotly' ,
430
- 'chart_studio/ plotly/ chunked_requests' ,
431
- 'chart_studio/ presentation_objs' ,
432
- 'chart_studio/ widgets' ,
424
+ 'chart_studio. api' ,
425
+ 'chart_studio. api. v1' ,
426
+ 'chart_studio. api. v2' ,
427
+ 'chart_studio. dashboard_objs' ,
428
+ 'chart_studio. grid_objs' ,
429
+ 'chart_studio. plotly' ,
430
+ 'chart_studio. plotly. chunked_requests' ,
431
+ 'chart_studio. presentation_objs' ,
432
+ 'chart_studio. widgets' ,
433
433
'_plotly_utils' ,
434
434
'_plotly_future_' ,
435
435
] + graph_objs_packages + validator_packages ,
0 commit comments