-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
37 lines (32 loc) · 948 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "scanf"
authors = [{name = "Josh Burnett", email = "github@burnettsonline.org"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
]
dynamic = ["version", "description"]
requires-python = "==2.7, >=3.8"
dependencies = [
"backports.functools_lru_cache; python_version<'2.9'",
]
[project.urls]
Home = "https://github.com/joshburnett/scanf"
[project.optional-dependencies]
test = ["pytest"]
[tool.flit.module]
name = "scanf"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
default = false