-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 1.06 KB
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 = ["setuptools>=80", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vermin"
version = "1.8.0"
description = "Concurrently detect the minimum Python versions needed to run code"
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.0"
license = "MIT"
license-files = ["LICENSE.txt"]
authors = [
{ name = "Morten Kristensen", email = "me@mortens.dev" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.0",
"Topic :: Utilities",
"Topic :: Software Development"
]
keywords = ["version", "detection", "analysis", "ast", "development"]
dependencies = []
optional-dependencies = {}
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests"]
[project.scripts]
vermin = "vermin:main"
[project.urls]
"Homepage" = "https://github.com/netromdk/vermin"
"Source" = "https://github.com/netromdk/vermin"
"Bug Reports" = "https://github.com/netromdk/vermin/issues"