Newer
Older
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""

Nathan Hertz
committed
# For matching the version string.
import re
# To use a consistent encoding
from codecs import open
from os import path
# Always prefer setuptools over distutils

Nathan Hertz
committed
from setuptools import find_packages, setup
this_module = "testing"
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
def read(*parts):
with open(path.join(here, *parts), "r") as fp:
return fp.read()
def find_version(*file_paths):
version_file = read(*file_paths)

Nathan Hertz
committed
version_match = re.search(r"^___version___ = ['\"]([^'\"]*)['\"]", version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
requires = [
"pytest>=5.4,<6.0",
"pendulum==2.1.2",
"pytest-mock==3.3.1",
"behave==1.2.6",
"pytest-cov==2.11",

Nathan Hertz
committed
"mock_alchemy==0.2.1",
"pytest-resource-path",
"requests-mock",
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
]
# Setup comment
setup(
name="ssa-" + this_module,
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version=find_version(this_module, "_version.py"),
description="Notification: the Workspaces Notification Service",
long_description=long_description,
# Author details
author="Science Support and Archive",
author_email="ssa-announcements@nrao.edu",
# Choose your license
license="GPL",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
# Pick your license as you wish (should match "license" above)
"License :: OSI Approved :: GPL License",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 3.6",
],
install_requires=requires,
extras_require={
"dev": [
"pyramid_debugtoolbar",
],
},
packages=find_packages(),
entry_points={
"paste.app_factory": ["main = notification.server:main"],
},
)