-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (30 loc) · 1.04 KB
/
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 setup, find_packages
setup(
name = 'termplotlib',
version = '0.0.1',
author = 'Johan Jeppsson',
author_email = '[email protected]',
description = ('Library for creating simple terminal plots'),
license = 'GPLv3+',
keywords = "terminal plot",
url = 'https://github.com/johanjeppsson/termplotlib',
packages = find_packages(),
install_requires = ['numpy'],
download_url = 'https://github.com/johanjeppsson/termplotlib/tarball/master',
# TODO
#entry_points={
# "console_scripts": ["drawille=drawille:__main__"]
#},
classifiers = [
"Development Status :: 1 - Planning",
"Topic :: Utilities",
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
)