-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 1.03 KB
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 1.03 KB
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 distutils.core import setup
setup(
name='ppretty',
packages=['ppretty'],
version='1.3',
description='Convert python objects to a human readable format',
author='SymonSoft',
author_email='symonsoft@gmail.com',
url='https://github.com/symonsoft/ppretty',
download_url='https://github.com/symonsoft/ppretty/tarball/1.3',
keywords=['pretty', 'print', 'format', 'object', 'human', ''],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Debuggers',
'Topic :: Utilities'
],
)