-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1 KB
/
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
30
31
32
33
34
35
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name="django_remote_jsonschema_forms",
version="1.0.0",
description="A platform independent form serializer for Django.",
author="Gorka Garcia",
author_email="[email protected]",
url="http://github.com/codesyntax/django_remote_jsonschema_forms/",
long_description=open("README.md", "r").read(),
packages=[
"django_remote_jsonschema_forms",
],
package_data={},
zip_safe=False,
requires=[],
install_requires=[],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: MIT",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Utilities",
],
)