-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (26 loc) · 832 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-simple-jsonschema',
version='0.0.5',
author='38elements',
description='django-simple-jsonschema is middleware for integrating django and jsonschema. ',
license='MIT License',
url='https://github.com/38elements/django-simple-jsonschema',
install_requires=[
'django>=1.8',
'jsonschema>=2.5'
],
packages=[
'django_simple_jsonschema',
'django_simple_jsonschema.management',
'django_simple_jsonschema.management.commands',
],
keywords='django jsonschema',
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers'
]
)