-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.25 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
dynamic = ["version"]
name = "aexpy"
authors = [
{ name="StardustDL", email="stardustdl@163.com" },
]
description = "AexPy /eɪkspaɪ/ is Api EXplorer in PYthon for detecting API breaking changes in Python packages."
readme = "README.md"
keywords = ["Python", "API", "Breaking Change", "Backward Compatibility"]
classifiers = [
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities",
"Intended Audience :: Developers",
]
requires-python = ">=3.12"
dependencies = [
"mypy>=0.981",
"click>=8.0.0",
"pydantic>=2.0.2",
]
[project.urls]
Homepage = "https://aexpy.netlify.app/"
Documentation = "https://aexpy-docs.netlify.app/"
Repository = "https://github.com/StardustDL/aexpy"
Issues = "https://github.com/StardustDL/aexpy/issues"
Changelog = "https://github.com/StardustDL/aexpy/releases"
[project.scripts]
aexpy = "aexpy.__main__:main"
[tool.hatch.version]
path = "src/aexpy/__init__.py"