-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (55 loc) · 1.51 KB
/
setup.py
File metadata and controls
62 lines (55 loc) · 1.51 KB
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
55
56
57
58
59
60
61
# coding=utf-8
import django_sae
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
packages = [
'django_sae',
'django_sae.conf',
'django_sae.cache',
'django_sae.cache.tests',
'django_sae.contrib',
'django_sae.contrib.tasks',
'django_sae.contrib.tasks.tests',
'django_sae.management',
'django_sae.management.commands',
'django_sae.db',
'django_sae.utils',
]
requires = [
'django>=1.6.4,<1.7',
'django-extensions>=1.3.4',
'django-debug-toolbar>=1.2',
'pytz>=2014.2',
'South>=0.8.4',
'pip>=1.5.5',
]
with open('README.md') as f:
readme = f.read()
with open('HISTORY.md') as f:
history = f.read()
setup(
name='django-sae',
version=django_sae.__version__,
description='for django in sae',
long_description=readme + '\n\n' + history,
author='smallcode',
author_email='45945756@qq.com',
url='https://github.com/smallcode/django-sae',
packages=packages,
package_dir={'django_sae': 'django_sae'},
include_package_data=True,
install_requires=requires,
license=django_sae.__license__,
zip_safe=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)