-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 962 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
from setuptools import setup
setup(
name='django-parsed-field',
version='1.0.1',
packages=['parsedfield'],
url='https://github.com/achievement008/django-parsed-field',
license='MIT',
include_package_data=True,
author='Sergei Korotko',
author_email='[email protected]',
description='A reusable Django field that allows you to store parsed JSON in your model.',
long_description=open("README.rst").read(),
install_requires=['jsonfield'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Django',
],
)