-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 814 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 814 Bytes
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
from setuptools import setup
setup(
name='django-api-playground',
version='0.1.1',
packages=['apiplayground', 'apiplayground.templatetags'],
zip_safe=False,
include_package_data=True,
url='http://github.com/fatiherikli/django-api-playground',
license='BSD',
author='fatiherikli',
author_email='fatiherikli@gmail.com',
description='API Playground for RESTful APIs',
install_requires=['markdown'],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
'Programming Language :: Python :: 2.7',
"Framework :: Django",
],
)