-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (28 loc) · 952 Bytes
/
pyproject.toml
File metadata and controls
35 lines (28 loc) · 952 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
[metadata]
licence_files=["LICENSE.md"]
[project]
name = "CosmoTech_Documentation_Template"
authors = [{ name = "Cosmo Tech", email = "platform@cosmotech.com" }]
description = "Template repository for python with automated documentation"
dynamic = ["version", "dependencies", "optional-dependencies"]
readme = {file = "README.md", content-type = "text/markdown"}
[urls]
Homepage = "https://www.cosmotech.com"
Source = "https://github.com/Cosmo-Tech/python_with_doc_template"
Documentation = "https://cosmo-tech.github.io/python_with_doc_template/"
[build-system]
requires = ["setuptools", "wheel"]
[tool.setuptools]
include-package-data = true
package-data."*" = [
"requirements.txt",
"requirements.doc.txt"
]
zip-safe = false
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.setuptools.dynamic]
version.attr = "src.VERSION"
dependencies.file = "requirements.txt"
optional-dependencies.doc.file = "requirements.doc.txt"