-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
26 lines (25 loc) · 904 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "chrono24"
dist-name = "chrono24"
author = "Ira Horecka"
author-email = "[email protected]"
home-page = "https://github.com/irahorecka/chrono24"
description-file = "README.md"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
requires-python = ">=3.7"
requires = ["beautifulsoup4>=4.11.0", "faker>=30.0.0", "requests>=2.28.0", "tenacity>=8.2.0"]