-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
27 lines (24 loc) · 967 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 = "cloudfloordns"
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#static-vs-dynamic-metadata ?
version = "0.1.8"
description = ""
authors = ["David Gallay <[email protected]>"]
readme = "README.md"
packages = [{include = "cloudfloordns", from="."}]
# https://python-poetry.org/docs/pyproject/#repository
repository = "https://github.com/divad1196/pycloudfloordns"
documentation = "https://divad1196.github.io/pycloudfloordns"
# [tool.setuptools.dynamic]
# version = {attr = ".__version__"}
[tool.poetry.dependencies]
# https://stackoverflow.com/questions/65945929/poetry-how-to-publish-project-packages-targeting-multiple-python-versions
python = ">=3.9.0,<4.0.0"
requests = "^2.31.0"
pydantic = "^2.6.3"
ratelimit = "^2.2.1"
gevent = "^24.2.1"
# dnspython = "^2.6.1" # {extras = ["dnssec", "doh", "idna"], version = "^2.6.1"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"