forked from glamp/bashplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 900 Bytes
/
setup.py
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
#!/usr/bin/env python
from setuptools import find_packages, setup
with open("README.rst") as fh:
long_description = fh.read()
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=long_description,
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',
],
)