-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·29 lines (26 loc) · 902 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
#!/usr/bin/env python
from setuptools import setup
__version__ = None # pyflakes
execfile('buck/pprint/version.py')
setup(
name = 'buck.pprint',
version = __version__,
description = "A fork of the cpython's pprint which gives standard indentation.",
long_description = open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(),
author = 'Buck Golemon',
author_email = '[email protected]',
url = 'https://github.com/bukzor/buck.pprint',
license = 'LICENSE.txt',
packages = ['buck.pprint'],
namespace_packages = ['buck'],
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Software Development :: Code Generators",
],
test_suite = 'buck.pprint.test',
)