-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·36 lines (33 loc) · 880 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
tests_require = [
'unittest2',
'django',
]
setup(
name='django-emails',
version='0.1',
author='Bartlomiej Borzucki',
author_email='[email protected]',
url='',
install_requires=[
'django-templatetag-sugar>=0.1',
'pycrypto',
'django_ses'
],
tests_require=tests_require,
license='BSD',
extras_require={'test': tests_require},
test_suite='unittest2.collector',
description='An efficient paginator that works.',
packages=find_packages(),
include_package_data=False,
zip_safe=False,
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
)