-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 2.08 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
# This section describes the requirements of the build/installation
# process itself. Being able to do this was the original reason to
# introduce pyproject.toml
[build-system]
requires = ["setuptools >=61", "setuptools_scm >=7"]
build-backend = "setuptools.build_meta"
# This section provides general project metadata that is used across
# a variety of build tools. Notably, the version specified here is the
# single source of truth for sdu_modeling's version
[project]
name = "sdu_modeling"
description = "sdu_modeling is a Python library for robot modeling and estimation of inertial parameters."
readme = "README.md"
maintainers = [
{ name = "Anders Prier Lindvig", email = "anpl@mmmi.sdu.dk" },
{ name = "Roberto de Nóbrega", email = "rno@mmmi.sdu.dk" },
{ name = "Kasper Høj Lorenzen", email = "kalor@mmmi.sdu.dk" },
]
dynamic = ["version"]
requires-python = ">=3.8"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies = ["click"]
[project.optional-dependencies]
tests = ["pytest"]
docs = [
"sphinx",
"sphinx_mdinclude",
"sphinx_book_theme",
"sphinx_design",
"sphinx-icon",
"sphinx-copybutton",
"sphinx-tabs",
"sphinxcontrib-bibtex",
"sphinx-multiversion",
]
# Command line scripts installed as part of the installation
[project.scripts]
sdu_modeling = "sdu_modeling.__main__:main"
# The following section contains setuptools-specific configuration
# options. For a full reference of available options, check the overview
# at https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[tool.setuptools]
packages = ["sdu_modeling"]
# Configure setuptools_scm, which extracts the version number from
# the version control system. For more information see its documentation:
# https://github.com/pypa/setuptools_scm
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
write_to = "sdu_modeling/_version.py"
# The following is the configuration for the pytest test suite
[tool.pytest.ini_options]
testpaths = ["tests"]