-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.01 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 = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "al-smart-settings"
dynamic = ["version"]
description = "Smart setting files"
readme = "readme.md"
license = "MIT"
authors = [
{ name = "Michal Rolinek", email = "[email protected]" },
{ name = "Sebastian Blaes" },
{ name = "Marin Vlastelica" },
{ name = "Felix Kloss" },
]
maintainers = [
{ name = "Autonomous Learning Group @ University of Tübingen" },
]
dependencies = [
"pyyaml",
"tomli; python_version < '3.11'",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[project.urls]
Source = "https://github.com/martius-lab/smart-settings"
"Bug Tracker" = "https://github.com/martius-lab/smart-settings/issues"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
include = [
"/smart_settings",
]
[tool.hatch.build.targets.wheel]
packages = ["smart_settings"]