forked from m-vdb/pep440-version-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
27 lines (24 loc) · 806 Bytes
/
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
[tool.poetry]
name = "pep440-version-utils"
version = "0.3.0"
description = "Utilities to deal with pep440 versioning"
authors = ["Maxime Verger <[email protected]>"]
license = "MIT"
maintainers = ["Maxime Verger <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/m-vdb/pep440-version-utils"
repository = "https://github.com/m-vdb/pep440-version-utils"
keywords = ["pep440", "version"]
classifiers = ["Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License"]
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
packaging = "^20.3"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
mypy = "^0.950"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
coveralls = "^3.3.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"