FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
bashplotlib/setup.py at master · TrendingTechnology/bashplotlib · GitHub
TrendingTechnology
/
bashplotlib
Public
forked from
glamp/bashplotlib
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
bashplotlib
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
30 lines (27 loc) · 844 Bytes
Breadcrumbs
bashplotlib
/
setup.py
Copy path
File metadata and controls
30 lines (27 loc) · 844 Bytes
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
#!/usr/bin/env python
from
setuptools
import
find_packages
,
setup
setup
(
name
=
"bashplotlib"
,
version
=
"0.6.5"
,
author
=
"Greg Lamp"
,
author_email
=
"lamp.greg@gmail.com"
,
url
=
"https://github.com/glamp/bashplotlib"
,
license
=
"BSD"
,
packages
=
find_packages
(),
description
=
"plotting in the terminal"
,
long_description
=
open
(
"README.rst"
).
read
(),
entry_points
=
{
'console_scripts'
: [
'hist=bashplotlib.histogram:main'
,
'scatter=bashplotlib.scatterplot:main'
,
]
},
keywords
=
[
'plotting'
,
'console'
,
'shell'
],
classifiers
=
[
'Environment :: Console'
,
'Intended Audience :: End Users/Desktop'
,
'License :: OSI Approved :: BSD License'
,
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3'
,
],
)
Back
|
FazBrowse Home
|
New Git URL