-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathsetup.approval_utilities.py
35 lines (33 loc) · 1.34 KB
/
setup.approval_utilities.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
from setuptools import setup, find_packages # type: ignore
from setup_utils import get_version
requires = {}
setup(
name="approval_utilities",
version=get_version(),
description="Utilities for your production code that work well with approvaltests",
author="ApprovalTests Contributors",
author_email="[email protected]",
url="https://github.com/approvals/ApprovalTests.Python",
python_requires=">=3.8",
packages=find_packages(include=["approval_utilities*"]),
package_data={},
install_requires=[],
# long_description=(get_parent_directory() / "README.md").read_text(),
# long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"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",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
)