forked from deep-c/django-sns-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 946 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
from setuptools import setup
import os
import textwrap
import django_sns_view as app
ROOT = os.path.abspath(os.path.dirname(__file__))
setup(
name='django-sns-view',
version=os.environ.get('VERSION', app.__version__),
author='Deeptesh Chagan',
packages=[
'django_sns_view', 'django_sns_view.tests'],
url='https://github.com/deep-c/django-sns-view',
description=(
"A Django view that can be subscribed to Amazon SNS"
),
long_description=textwrap.dedent(
open(os.path.join(ROOT, 'README.rst')).read()),
include_package_data=True,
zip_safe=False,
install_requires=[
'Django>=1.7',
'pyopenssl<=24.2.1',
'pem>=16.0.0',
'requests>=2.18.0',
'cffi>=1.11.5',
],
keywords="aws sns django",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP']
)