-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 839 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 839 Bytes
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
[project]
name = "ecological"
version = "3.0.1"
description = "Map a Python configuration from environment variables"
readme = "README.rst"
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [
{ name = "João Santos", email = "jmcs@jsantos.eu" },
{ name = "Marcin Zaremba", email = "mrcn.zrmb@gmail.com" }
]
classifiers = [
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/jmcs/ecological"
Repository = "https://github.com/jmcs/ecological"
[dependency-groups]
dev = [
"pytest>=9.0.0,<10.0.0",
"pytest-cov>=7.0.0,<8.0.0",
"pygments>=2.19.2,<3.0.0",
"ty",
"ruff"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"