-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
37 lines (34 loc) · 1.24 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "__init__.py"
[project]
name = "pyromania"
authors = [
{name = "Tim Allen", email = "[email protected]"},
]
description = "Pyromania creates and manages Python 3 venvs, inspired by virtualenvwrapper."
readme = "README.md"
requires-python = ">=3.3"
keywords = ["venv", "virtualenv", "virtual environment", "docker", "container"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/FlipperPA/pyromania/"
"Repository" = "https://github.com/FlipperPA/pyromania/"
"Documentation" = "https://github.com/FlipperPA/pyromania/"
"Bug Tracker" = "https://github.com/FlipperPA/pyromania/issues"