-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (50 loc) · 1.29 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
[build-system]
requires = ["setuptools >= 61.0.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "soap"
authors = [
{name = "Josh A. Mitchell", email = "[email protected]"}
]
description = "Conda meets Cargo"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.9" # See https://numpy.org/neps/nep-0029-deprecation_policy.html
keywords = ["conda", "mamba", "venv", "runner", "build"]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
]
dependencies = [
"gitpython",
"toml",
"typer[all]>=0.6",
"schema",
"pyyaml",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"codecov",
]
docs = [
"sphinx~=6.0.0",
"sphinx_rtd_theme",
"myst-parser~=1.0.0",
"sphinx-notfound-page",
"sphinx-click",
"sphinx-jsonschema",
]
all=["soap[test,docs]"]
[project.urls]
Homepage = "https://github.com/Yoshanuikabundi/snakes_on_a_plane"
Documentation = "https://snakesonaplane.readthedocs.io/"
Repository = "https://github.com/Yoshanuikabundi/snakes_on_a_plane"
[project.scripts]
soap = "soap._cli:main"
[tool.setuptools]
packages = ["soap"]
[tool.setuptools_scm]
write_to = "soap/_version.py"