-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (35 loc) · 1.14 KB
/
setup.py
File metadata and controls
executable file
·37 lines (35 loc) · 1.14 KB
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 find_packages
from setuptools import setup
NAME = 'django-msg'
VERSION = '0.2.0'
SUMMARY = 'Django util package for send email and sms messages. Only for PostgreSQL database.'
setup(
name=NAME,
version=VERSION,
description=SUMMARY,
url='https://github.com/jroslaniec/django-msg',
author='Jędrzej Rosłaniec',
author_email='jedr.ros@gmail.com',
license='MIT',
install_requires=['django >= 3.2.0', 'psycopg2 >= 2.7.0'],
extras_require={
'celery': ['celery >= 4.0.0'],
'boto3': ['boto3 >= 1.0.0'],
'twilio': ['twilio >= 6.0.0'],
'all': ['celery >= 4.0.0', 'boto3 >= 1.0.0', 'twilio >= 6.0.0'],
},
test_suite='tests',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
],
keywords=('django', 'messages', 'email', 'sms', 'notifications'),
packages=find_packages(exclude=[
'examples',
'docs',
'tests*',
]),
)