-
Notifications
You must be signed in to change notification settings - Fork 144
/
setup.py
32 lines (28 loc) · 886 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
32
#!/usr/bin/env python
from setuptools import setup
import tastypie_swagger
description = "An adapter to use swagger-ui with django-tastypie"
try:
longdesc = open('README.rst').read()
except Exception:
longdesc = description
setup(
# Metadata
name='django-tastypie-swagger',
version='.'.join(map(str, tastypie_swagger.VERSION)),
description=description,
long_description=longdesc,
author='Concentric Sky',
author_email='[email protected]',
classifiers=[
'Programming Language :: Python',
'Environment :: Web Environment',
'Framework :: Django',
],
url='https://github.com/concentricsky/django-tastypie-swagger',
download_url='https://github.com/concentricsky/django-tastypie-swagger/downloads',
license='BSD',
packages=['tastypie_swagger'],
include_package_data=True,
zip_safe=False,
)