forked from django-piston/django-piston
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 942 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup
setup(
name = "django-piston",
version = "0.3.1",
url = 'https://github.com/SheepDogInc/django-piston',
download_url = 'https://github.com/SheepDogInc/django-piston',
license = 'BSD',
description = "Piston is a Django mini-framework creating APIs.",
author = 'Jesper Noehr',
author_email = 'jesper@noehr.org',
packages = ['piston'],
classifiers = [
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
test_suite='piston.test_integration.runtests.runtests'
)