FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
plotly.py/setup.py at master · thybu-github/plotly.py · GitHub
thybu-github
/
plotly.py
Public
forked from
plotly/plotly.py
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
plotly.py
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
45 lines (40 loc) · 1.53 KB
Breadcrumbs
plotly.py
/
setup.py
Copy path
File metadata and controls
45 lines (40 loc) · 1.53 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from
setuptools
import
setup
exec
(
open
(
'plotly/version.py'
).
read
())
def
readme
():
with
open
(
'README.rst'
)
as
f
:
return
f
.
read
()
setup
(
name
=
'plotly'
,
version
=
__version__
,
use_2to3
=
False
,
author
=
'Chris P'
,
author_email
=
'chris@plot.ly'
,
maintainer
=
'Chris P'
,
maintainer_email
=
'chris@plot.ly'
,
url
=
'https://plot.ly/python/'
,
description
=
"Python plotting library for collaborative, "
"interactive, publication-quality graphs."
,
long_description
=
readme
(),
classifiers
=
[
'Development Status :: 4 - Beta'
,
'Programming Language :: Python :: 2'
,
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.2'
,
'Programming Language :: Python :: 3.3'
,
'Programming Language :: Python :: 3.4'
,
'Topic :: Scientific/Engineering :: Visualization'
,
],
license
=
'MIT'
,
packages
=
[
'plotly'
,
'plotly/plotly'
,
'plotly/plotly/chunked_requests'
,
'plotly/graph_objs'
,
'plotly/grid_objs'
,
'plotly/widgets'
,
'plotly/offline'
,
'plotly/matplotlylib'
,
'plotly/matplotlylib/mplexporter'
,
'plotly/matplotlylib/mplexporter/renderers'
],
package_data
=
{
'plotly'
: [
'graph_reference/*.json'
,
'widgets/*.js'
,
'offline/*.js'
]},
install_requires
=
[
'requests'
,
'six'
,
'pytz'
],
zip_safe
=
False
)
Back
|
FazBrowse Home
|
New Git URL