forked from jezradek/ella-attachments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (42 loc) · 1.29 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
from setuptools import setup, find_packages
VERSION = (1, 0, 3)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
install_requires = [
'ella>=2,<4',
'South>=0.7',
]
test_requires = [
'nose',
'coverage',
]
setup(
name='ella-attachments',
version=__versionstr__,
description='Add attachments to Ella project',
author='Ella Development Team',
author_email='[email protected]',
license='BSD',
url='https://github.com/ella/ella-attachments',
packages=find_packages(
where='.',
exclude=('test_ella_attachments',)
),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Framework :: Django",
"Programming Language :: Python",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
include_package_data=True,
install_requires=install_requires,
test_suite='test_ella_attachments.run_tests.run_all',
tests_require=test_requires,
)