-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (27 loc) · 953 Bytes
/
pyproject.toml
File metadata and controls
34 lines (27 loc) · 953 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
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
# https://packaging.python.org/en/latest/specifications/pyproject-toml/
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme = "no-local-version"
version_file = "src/pyrx_sample_project/_version.py"
fallback_version = "0.1.0"
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
namespaces = false
[project]
name = "pyrx-sample-project"
dynamic = ["version"]
# authors = [{ name = "...", email = "..." }] # Your name and email here
description = "A sample project for PyRx" # Brief description of your project
requires-python = ">=3.12.0,<3.13.0"
dependencies = ["cad-pyrx"]
[project.optional-dependencies]
dev = ["pytest", "build"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mypy]
files = ["src/pyrx_sample_project"]
disable_error_code = ["import-untyped"]