-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
34 lines (29 loc) · 905 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
32
33
34
[tool.poetry]
name = "sentinel"
version = "1.0.0"
description = "Create sentinel objects, akin to None, NotImplemented, Ellipsis"
authors = ["Eddie Antonio Santos <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/eddieantonio/sentinel"
repository = "https://github.com/eddieantonio/sentinel.git"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.6"
# Optional dependency:
varname = {version = ">=0.1", optional = true}
[tool.poetry.extras]
varname = ["varname"]
[tool.poetry.dev-dependencies]
pytest = "^6.2.1"
mypy = "^0.971"
black = "^20.8b1"
toml = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"