forked from sha256/python-var-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 833 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
from distutils.core import setup
setup(
name='var_dump',
version='1.0',
packages=['var_dump'],
url='http://bitbucket.org/sha256/python-var_dump',
license='MIT',
author='Shamim Hasnath',
author_email='[email protected]',
description='PHP like var_dump for python',
download_url='http://github.com/sha256/python-var_dump/tarball',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)