-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (49 loc) · 1.57 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
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "veman"
authors = [{name = "Mikael Tranbom"}, {email = "mikael@tranbom.io"}]
description = "Virtual environment manager for venv"
requires-python = ">=3.9"
license = {text = "GPLv3"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Utilities"
]
keywords = [
"venv", "virtual environment", "utility",
"developer tools", "virtual environment manager"
]
readme = "README.md"
dynamic = ["version"]
[project.scripts]
veman = "veman:main.main"
[project.urls]
"Homepage" = "https://tranbom.io/veman/"
"Repository" = "https://gitlab.com/tranbom/veman"
"Documentation" = "https://tranbom.io/veman/"
[tool.setuptools.dynamic]
version = {attr = "veman.__version__"}
[tool.setuptools.packages.find]
include = ["veman"]
exclude = ["veman.tests*", "tests*"]
[tool.pylint.main]
max-args = 10
max-attributes = 16
max-branches = 28