-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
31 lines (30 loc) · 937 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
30
31
from setuptools import setup, find_packages
setup(
name="swagger-django-generator",
version="0.0.3",
description="Generate Django code from a Swagger specification",
long_description="""
This utility parses Swagger specifications and creates `urls.py`, `views.py`
and `schemas.py` files that can be dropped into any existing Django
application.
""",
author="Praekelt Consulting",
author_email="[email protected]",
license="BSD",
url="",
packages=find_packages(),
install_requires=[],
package_data={
"templates": ["*.py"]
},
tests_require=[],
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Framework :: Django",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
zip_safe=False,
)