-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
65 lines (54 loc) · 1.38 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "callscript"
description = "Makes scripts feel like functions."
requires-python = ">=3.8"
license = {file = "LICENSE.txt"}
readme = "README.md"
keywords = []#
authors = [
{name = "Nicholas A. Del Grosso", email = "[email protected]"},
]
maintainers = [
{name = "Nicholas A. Del Grosso", email = "[email protected]"},
]
classifiers = [
# "Development Status :: 4 - Beta",
"Programming Language :: Python"
]
dependencies = [
"redbaron",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov[all]",
"tox",
"scriv[toml]"
]
[tool.setuptools.dynamic]
readme = {file = "README.md"}
[tool.setuptools_scm]
write_to = "callscript/_version.py"
local_scheme = "no-local-version"
[tool.mypy]
[[tool.mypy.overrides]]
module = [
"redbaron"
]
ignore_missing_imports = true
[project.urls]
# homepage = "https://example.com"
# documentation = "https://readthedocs.org"
repository = "https://github.com/nickdelgrosso/callscript"
changelog = "https://github.com/nickdelgrosso/callscript/blob/main/CHANGELOG.md"
[tool.scriv]
format = "md"
version = "literal:callscript/_version.py:version"
[project.scripts]
extract-method = "callscript.cli:main"
# [project.entry-points."spam.magical"]
# tomatoes = "spam:main_tomatoes"