-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (30 loc) · 915 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
33
34
35
[build-system]
requires = ["setuptools", "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 = "raffaello@rnext.it" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
requires-python = ">=3.8"
dynamic = ["dependencies","version"]
[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"