-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
54 lines (48 loc) · 1.75 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import os
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
from django_uwsgi import __version__
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-uwsgi',
version=__version__,
description='uWSGI stuff for Django projects',
long_description=open('README.rst').read(),
url='http://github.com/unbit/django-uwsgi',
author='Eugene MechanisM',
author_email='[email protected]',
license='MIT',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Framework :: Django',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Code Generators",
'Topic :: Communications :: Email',
'Framework :: Django',
],
keywords='uwsgi, django, mail, cache, template',
packages=find_packages(),
include_package_data=True,
install_requires=[],
extras_require={
'uwsgi': ['uwsgi'],
},
)