forked from chehsunliu/pytest-stepfunctions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.15 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
from pathlib import Path
from setuptools import setup, find_packages
setup(
name="pytest-stepfunctions",
author="Che-Hsun Liu",
author_email="[email protected]",
description="A small description",
long_description=Path("./README.md").read_text(),
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/chehsunliu/pytest-stepfunctions",
setup_requires=["setuptools_scm"],
use_scm_version=True,
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=["pytest"],
entry_points={"pytest11": ["pytest-stepfunctions = pytest_stepfunctions.plugin"]},
classifiers=[
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
],
python_requires=">=3.6",
)