-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
49 lines (45 loc) · 1.03 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
[tool.poetry]
name = "backports.strenum"
version = "1.3.1"
description = "Base class for creating enumerated constants that are also subclasses of str"
authors = ["Chris L. Barnes <chrislloydbarnes@gmail.com>"]
readme = "README.rst"
packages = [
{ include = "backports", from = "src" },
]
license = "PSF-2.0"
repository = "https://github.com/clbarnes/backports.strenum"
keywords = ["backports", "enum", "strenum"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
[tool.poetry.dependencies]
python = ">=3.8.6,<3.11"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
ruff = "^0.0.285"
mypy = "^1.5.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
target-version = ['py38', 'py39', 'py310']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''