-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (35 loc) · 1.19 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
from setuptools import setup, find_packages
from djcelery_ses import __version__
setup(
name='django-celery-ses',
version=__version__,
description="django-celery-ses",
author='tzangms',
author_email='tzangms@streetvoice.com',
url='http://github.com/StreetVoice/django-celery-ses',
license='MIT',
test_suite='runtests.runtests',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
"django >= 1.10, <= 3.2.23",
],
classifiers=[
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django',
'Environment :: Web Environment',
],
keywords='django,celery,mail',
)