-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
53 lines (47 loc) · 1.96 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
import os
from setuptools import setup
VERSION = "0.11.0"
def get_long_description():
with open(
os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md"),
encoding="utf8",
) as fp:
return fp.read()
setup(
name="the-well-maintained-test",
description="Programatically tries to answer the 12 questions from \
Adam Johnson's blog post https://adamj.eu/tech/2021/11/04/the-well-maintained-test/",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="Ryan Cheley",
url="https://github.com/ryancheley/the-well-maintained-test",
project_urls={
"Issues": "https://github.com/ryancheley/the-well-maintained-test/issues",
"CI": "https://github.com/ryancheley/the-well-maintained-test/actions",
"Changelog": "https://github.com/ryancheley/the-well-maintained-test/releases",
"Documentation": "https://github.com/ryancheley/the-well-maintained-test/blob/main/README.md",
},
license="Apache License, Version 2.0",
version=VERSION,
packages=["the_well_maintained_test"],
package_dir={"": "src"},
entry_points="""
[console_scripts]
the-well-maintained-test=the_well_maintained_test.cli:cli
""",
package_data={"the_well_maintained_test": ["data/question*", "data/urls.toml"]},
install_requires=["click", "importlib-resources", "requests", "rich", "toml"],
extras_require={"test": ["pytest", "black", "isort", "coverage", "mypy", "cogapp"]},
python_requires=">=3.7",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Programming Language :: Python :: 3.7",
"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",
],
)