-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (37 loc) · 1 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["setuptools>=62.0", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "nanosaur"
description = "A nanosaur package"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Raffaello Bonghi", email = "[email protected]" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
requires-python = ">=3.8"
dynamic = ["dependencies","version"]
[project.optional-dependencies]
dev = [
"catkin_pkg",
"empy==3.3.4",
"lark",
"flake8"
]
[tool.setuptools.dynamic]
# Dynamically read requirements
version = {attr = "nanosaur.__init__.__version__"}
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
nanosaur = "nanosaur.main:main"
[project.urls]
homepage = "https://nanosaur.ai"
documentation = "https://docs.example.com"
repository = "https://github.com/rnanousaur/nanosaur"