-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (23 loc) · 765 Bytes
/
pyproject.toml
File metadata and controls
30 lines (23 loc) · 765 Bytes
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
# This is only for python 3.10+. Do not use this for python 2.7
# If you get an error like
# ERROR: Package u'py23client' requires a different Python: 2.7.18 not in '>=3.10'
# Then you probably ran 'pip install -e .' in python 2.7
# You need to see (and use) ./setup.py for that, you monster.
[tool.poetry]
name = "py23client"
version = "0.1.0"
description = ""
authors = ["interifter <person@email.com>"]
readme = "README.md"
packages = [{include = "py23client", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.10"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests/py310"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"