forked from panyanyany/beeprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 1.09 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
from setuptools import setup
setup(
name = 'beeprint',
packages = ['beeprint', 'beeprint.models', 'beeprint.helpers', 'beeprint.lib'], # this must be the same as the name above
version = '2.4.11',
description = 'make your debug printing more friendly',
author = 'Yangyang Pan',
author_email = '[email protected]',
url = 'https://github.com/panyanyany/beeprint', # use the URL to the github repo
download_url = 'https://github.com/panyanyany/beeprint/archive/master.zip', # I'll explain this in a second
keywords = ['print', 'pprint', 'format', 'debug'], # arbitrary keywords
classifiers = [
"Programming Language :: Python",
# "Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Utilities",
],
install_requires = [
'urwid',
],
)