-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (58 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
68 lines (58 loc) · 1.64 KB
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
66
67
68
[metadata]
licence_files = ["LICENSE"]
[project]
name = "cosmotech_acceleration_library"
authors = [{ name = "Cosmo Tech", email = "platform@cosmotech.com" }]
description = "Acceleration libraries for CosmoTech cloud based solution development"
urls.Homepage = "https://www.cosmotech.com"
urls.Source = "https://github.com/Cosmo-Tech/CosmoTech-Acceleration-Library"
urls.Documentation = "https://cosmo-tech.github.io/CosmoTech-Acceleration-Library"
dynamic = ["version", "dependencies", "optional-dependencies"]
readme = { file = "README.md", content-type = "text/markdown" }
[build-system]
requires = ["setuptools", "wheel"]
[tool.pytest.ini_options]
pythonpath = ["."]
addopts = "--cov-report term-missing:skip-covered --cov=cosmotech.coal"
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
target-version = ["py311"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| generated
| __pycache__
)/
'''
[tool.setuptools]
include-package-data = true
package-data."*" = [
"requirements.txt",
"requirements.doc.txt",
"requirements.test.txt",
"requirements.dev.txt"
]
zip-safe = false
[project.scripts]
csm-data = "cosmotech.csm_data.main:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["cosmotech.*"]
[tool.setuptools.dynamic]
version.attr = "cosmotech.coal.__version__"
dependencies.file = "requirements.txt"
optional-dependencies.doc.file = "requirements.doc.txt"
optional-dependencies.test.file = "requirements.test.txt"
optional-dependencies.dev.file = "requirements.dev.txt"
optional-dependencies.all.file = "requirements.all.txt"