forked from ella/ella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (47 loc) · 1.36 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
55
from setuptools import setup, find_packages
import ella
install_requires = [
'setuptools>=0.6b1',
'Django>=1.3.1',
'south>=0.7',
'pytz',
'django-appdata>=0.1.0',
]
test_requires = [
'nose',
'coverage',
'feedparser',
'redis',
]
long_description = open('README.rst').read()
setup(
name='ella',
version=ella.__versionstr__,
description='Ella - Django powered CMS',
long_description=long_description,
author='Ella Development Team',
author_email='[email protected]',
license='BSD',
url='https://github.com/ella/ella',
packages=find_packages(
where='.',
exclude=('doc', 'test_ella', )
),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Framework :: Django",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=install_requires,
test_suite='test_ella.run_tests.run_all',
test_requires=test_requires,
)