forked from bruth/restlib2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (32 loc) · 1.05 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
37
38
from setuptools import setup, find_packages
version = __import__('restlib2').get_version()
kwargs = {
'name': 'restlib2',
'version': version,
'packages': find_packages(),
'author': 'Byron Ruth',
'author_email': '[email protected]',
'description': 'Django REST API',
'license': 'BSD',
'keywords': 'REST Django HTTP HATEOAS',
'url': 'https://github.com/bruth/restlib2',
'install_requires': [
'django>=1.4',
'six>=1.4.0',
],
'test_suite': 'test_suite',
'classifiers': [
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
],
}
setup(**kwargs)