generated from incebellipipo/template_python_package
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
32 lines (26 loc) · 924 Bytes
/
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "skadipy"
authors = [
{ name="Emir Cem Gezer", email="[email protected]"}
]
description = "A python package for Marine Vehicle Control"
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version", "dependencies", "optional-dependencies"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
urls = { "Source Code" = "https://github.com/incebellipipo/skadipy" }
license = { file = "LICENSE" }
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies.examples = { file = ["requirements.examples.txt"]}
[tool.setuptools_scm]
version_file = "src/skadipy/__version__.py"
version_scheme = 'post-release'
[tool.setuptools.packages.find]
where = ["src"]