-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (47 loc) · 1.82 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
# coding=utf-8
from os import path
from setuptools import setup, find_packages
version = '1.0.6'
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as file:
long_description = file.read()
setup(
name='mercury-py',
packages=find_packages(include=['mercury']),
package_data={'mercury': ['static/favicon.ico']},
include_package_data=True,
zip_safe=False,
version=version,
description='mercury-py (Mercury for Python) is a Python based microservice that allow to manage scheduled '
'notifications sending.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['notifications', 'authentication', 'email', 'sms', 'push notification', 'telegram'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Flask',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Communications',
'Topic :: Communications :: Email',
'Topic :: Communications :: Email :: Email Clients (MUA)',
'Topic :: Utilities'
], # https://pypi.org/classifiers/
author='Simone Perini',
author_email='[email protected]',
license='GPL-3.0',
url='https://github.com/CoffeePerry/mercury-py',
download_url=f'https://github.com/CoffeePerry/mercury-py/archive/{version}.tar.gz',
install_requires=[
'Flask==2.2.2',
'Flask-RESTful==0.3.9',
'Flask-SQLAlchemy==3.0.3',
'Flask-PyMongo==2.3.0',
'Flask-JWT-Extended==4.4.4',
'Flask-Mail==0.9.1',
'celery==5.2.7'
]
)