forked from APSL/django-yubin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (51 loc) · 1.61 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
56
57
58
59
#!/usr/bin/env python
# encoding: utf-8
# ----------------------------------------------------------------------------
from setuptools import setup
INSTALL_REQUIRES = [
'pyzmail',
'lockfile',
'pytz',
]
TEST_REQUIREMENTS = [
'six'
]
with open('docs/index.rst') as docs_index:
long_description = docs_index.read()
setup(
name='django-yubin',
version='0.3.1',
description=("A reusable Django app for composing and queueing emails "
"Adds django-mailer2 + django-mailviews + others"),
long_description=long_description,
author='Antoni Aloy',
author_email='[email protected]',
url='http://github.com/APSL/django-yubin',
install_requires=INSTALL_REQUIRES,
packages=[
'django_yubin',
'django_yubin.management',
'django_yubin.management.commands',
'django_yubin.migrations',
],
include_package_data=True,
# tests
tests_require=TEST_REQUIREMENTS,
test_suite='runtests.runtests',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
]
)