-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
executable file
·70 lines (58 loc) · 2.47 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# this restructured text docstring is displayed on https://pypi.org/project/notifications-python-client/
"""
Python API client for GOV.UK Notify - see https://www.notifications.service.gov.uk for more information.
For usage and documentation see https://docs.notifications.service.gov.uk/python.html
"""
import ast
import re
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand
# can't just import notifications_python_client.version as requirements may not be installed yet and imports will fail
_version_re = re.compile(r"__version__\s+=\s+(.*)")
with open("notifications_python_client/__init__.py", "rb") as f:
version = str(ast.literal_eval(_version_re.search(f.read().decode("utf-8")).group(1)))
class IntegrationTestCommand(TestCommand):
user_options = []
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = ""
def run_tests(self):
import shlex
import sys
import pytest
errno = pytest.main(shlex.split(self.pytest_args) + ["integration_test/integration_tests.py"])
sys.exit(errno)
setup(
name="notifications-python-client",
version=version,
url="https://github.com/alphagov/notifications-python-client",
license="MIT",
author="Government Digital Service",
description="Python API client for GOV.UK Notify.",
long_description=__doc__,
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords="gds govuk notify",
packages=find_packages(include=["notifications_python_client"]),
include_package_data=True,
# only support actively patched versions of python (https://devguide.python.org/versions/)
python_requires=">=3.8",
install_requires=[
"requests>=2.0.0",
"PyJWT>=1.5.1",
"docopt>=0.3.0",
],
# for running pytest as `python setup.py test`, see
# http://doc.pytest.org/en/latest/goodpractices.html#integrating-with-setuptools-python-setup-py-test-pytest-runner
setup_requires=["pytest-runner"],
cmdclass={"integration_test": IntegrationTestCommand},
)