-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.08 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project]
name = "developer-guide"
version = "0.1.0"
description = "Guidelines for software developers at LASP"
authors = [
{name = "Matthew Bourque", email = "[email protected]>"},
{name = "Keira Brooks", email = "[email protected]>"},
{name = "Luke Charbonneau", email = "[email protected]"},
{name = "Veronica Martinez", email = "[email protected]>"},
{name = "Alex Ware", email = "[email protected]>"}]
readme = "README.md"
license = "MIT"
keywords = ["LASP", "Developer Guide", "Software"]
classifiers = [
"Natural Language :: English",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
]
[tool.poetry]
package-mode = false
[tool.poetry.dependencies]
myst-parser = "^3.0.1"
python = ">=3.9,<4"
sphinx = "^7.3.7"
sphinx-rtd-theme = "^2.0.0"
[project.urls]
homepage = "https://github.com/lasp/"
repository = "https://github.com/lasp/developer-guide"
[tool.codespell]
ignore-words-list = "nd"