-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (45 loc) · 1.26 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
"""
Python API client for GOV.UK Notify
"""
import re
import ast
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='notifications-utils',
version=version,
url='https://github.com/alphagov/notifications-utils',
license='MIT',
author='Government Digital Service',
description='Shared python code for GOV.UK Notify.',
long_description=__doc__,
packages=find_packages(),
include_package_data=True,
install_requires=[
'bleach==3.3.0',
'cachetools>=4.1.1',
'mistune==0.8.4',
'requests>=2.25.0',
'python-json-logger>=2.0.1',
'Flask>=1.1.1',
'orderedset>=2.0.3',
'Jinja2>=2.11.0',
'statsd>=3.3.0',
'Flask-Redis>=0.4.0',
'pyyaml>=5.3.1',
'phonenumbers>=8.12.13',
'pytz>=2020.4',
'smartypants==2.0.1',
'pypdf2>=1.26.0',
'itsdangerous>=1.1.0',
'govuk-bank-holidays>=0.8',
'geojson>=2.5.0',
'Shapely>=1.7.1',
# required by both api and admin
'awscli',
'boto3',
]
)