-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 779 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 779 Bytes
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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "apter"
version = "0.11.dev1"
authors = [
{name = "U. Melendez", email = "apterpy@bfjournal.com"},
]
description = "A sweet project configuration package"
readme = "README.rst"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"parse>=1.19.0",
"PyYaml>=5.4.1",
]
[project.urls]
"Homepage" = "https://github.com/ulygit/apter"
"Bug Tracker" = "https://github.com/ulygit/apter/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
addopts = "--verbose"
testpaths = ["tests"]