forked from TSNobleSoftware/awssert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.41 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
from setuptools import setup, find_packages
from pathlib import Path
version = "1.0.1.dev0"
here = Path(__file__).parent.resolve()
with open(here.joinpath("README.md"), encoding="utf-8") as f:
long_description = f.read()
with open(here.joinpath("requirements.txt"), encoding="utf-8") as f:
requirements = f.readlines()
setup(
name="awssert",
version=version,
description="Declarative assertions for AWS",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TSNoble/awssert",
author="Tom Noble",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Framework :: AWS CDK",
"Framework :: Pytest",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords=["aws", "python", "pytest", "boto3", "testing"],
packages=find_packages(),
python_requires=">=3.6",
install_requires=[requirements],
entry_points={"pytest11": ["name_of_plugin = awssert"]},
project_urls={
"Bug Reports": "https://github.com/TSNobleSoftware/awssert/issues",
"Source": "https://github.com/TSNobleSoftware/awssert",
}
)