forked from cds-snc/notification-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (42 loc) · 1.28 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
"""
Python API client for VA Notify
"""
import ast
import re
from setuptools import setup, find_packages
_version_re = re.compile(r'__version__\s+=\s+(.*)')
with open('notifications_utils/version.py', 'rb') as f:
version = str(ast.literal_eval(_version_re.search(
f.read().decode('utf-8')).group(1)))
setup(
name='notification-utils',
version=version,
url='https://github.com/department-of-veterans-affairs/notification-utils',
license='MIT',
author='Department of Veteran Affairs',
# author_email is required if the author is specified.
author_email='unspecified',
description='Shared python code for VA Notify. Forked from https://github.com/cds-snc/notification-utils',
long_description=__doc__,
packages=find_packages(),
include_package_data=True,
install_requires=[
'bleach>=4.1.0',
'boto3>=1.24.61',
'botocore>=1.27.61',
'Flask>=1.1.1',
'Flask-Redis>=0.4.0',
'Jinja2>=2.11.3',
'MarkupSafe>=2.1.3',
'mistune==3.0.2',
'monotonic>=1.6',
'phonenumbers~=8.12.12',
'pypdf >= 3.15.0',
'python-json-logger~=2.0.7',
'pytz>=2021.3',
'pyyaml==6.0.2',
'requests>=2.26.0',
'smartypants>=2.0.1',
'statsd>=3.3.0'
]
)