-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (24 loc) · 882 Bytes
/
setup.py
File metadata and controls
24 lines (24 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from distutils.core import setup
setup(
name = 'packson',
packages = ['packson'],
version = '0.4.0',
license='MIT',
description = 'Easily bind JSON to user defined class instances.',
author = 'Eric Falkenberg',
author_email = 'ericsfalkenberg@gmail.com',
url = 'https://github.com/EricFalkenberg/packson',
download_url = 'https://github.com/EricFalkenberg/packson/archive/v0.4.0.tar.gz',
keywords = ['json', 'data', 'bind', 'decorator', 'types'],
install_requires=[],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)