-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 977 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
from distutils.core import setup
setup(
name = 'json2py',
version = '0.5',
packages = ['json2py'],
url = 'https://github.com/Wiston999/json2py',
download_url = 'https://github.com/Wiston999/json2py/tarball/v0.5',
license = 'MIT',
author = 'Victor Cabezas',
author_email = 'wiston666@gmail.com',
description = 'Convert JSON/dict to python object and viceversa',
keywords = ['JSON', 'parsing', 'utility'],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
install_requires = [
'python-dateutil==2.4.2',
'future==0.15.2'
]
)