-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
38 lines (32 loc) · 1.08 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "microvenv"
version = "2023.5.post1"
description = "A minimal re-implementation of Python's venv module plus utilities"
keywords = ["virtual environments", "venv"]
readme = "README.md"
license = { file = "LICENSE" }
maintainers = [{ name = "Brett Cannon", email = "[email protected]" }]
authors = [{ name = "Brett Cannon", email = "[email protected]" }]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Utilities",
"Natural Language :: English"
]
[project.optional-dependencies]
doc = ["sphinx", "sphinx-rtd-theme"]
test = ["pytest"]
lint = ["black", "mypy", "ruff"]
[project.urls]
Documentation = "https://microvenv.readthedocs.io/"
Changelog = "https://github.com/brettcannon/microvenv/releases"
Source = "https://github.com/brettcannon/microvenv"
"Fiscal support" = "https://github.com/sponsors/brettcannon/"
[tool.mypy]
ignore_missing_imports = true