forked from hongquan/single-version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (28 loc) · 897 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
28
29
30
31
[tool.poetry]
name = "single-version"
version = "1.2.2"
description = "Small utility to define version string for Poetry-style Python project."
authors = ["Nguyễn Hồng Quân <[email protected]>"]
maintainers = [
"Nguyễn Hồng Quân <[email protected]>"
]
readme = "README.rst"
license = "MIT"
homepage = "https://github.com/hongquan/single-version"
repository = "https://github.com/hongquan/single-version.git"
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only"
]
[tool.poetry.dependencies]
python = "^3.6"
importlib_metadata = { version = "^1.6", python = "< 3.8" }
first = "^2.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-flake8 = "^1.0"
black = "^19.10b0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"