forked from druids/django-pyston
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.04 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
from setuptools import setup, find_packages
from pyston.version import get_version
setup(
name="django-pyston",
version=get_version(),
description="Pyston is a Django mini-framework creating APIs.",
author='Lubos Matl',
author_email='[email protected]',
url='https://github.com/matllubos/django-pyston',
license='BSD',
package_dir={'pyston': 'pyston'},
include_package_data=True,
packages=find_packages(),
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',
],
install_requires=[
'django>=1.8',
'python-mimeparse==0.1.4',
'django-chamber>=0.3.7',
'pyparsing>=2.2.0',
],
dependency_links=[
'https://github.com/druids/django-chamber/tarball/0.3.7#egg=django-chamber-0.3.7'
],
zip_safe=False
)