-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (37 loc) · 919 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
35
36
37
38
39
40
41
42
43
[project]
name = "tourist"
authors = [
{ name="Joe Obarzanek", email="pogzyb@umich.edu" },
]
description = "Tourist Framework"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version"]
license = {text = "MIT License"}
dependencies = [
"httpx>=0.23.0",
"beautifulsoup4>=4.12.3"
]
[project.optional-dependencies]
app = [
"fastapi[standard]>=0.112.0",
"selenium==4.24.0",
"pydantic==2.8.0"
]
[project.scripts]
tourist = "tourist.cli:main"
[project.urls]
Homepage = "https://github.com/pogzyb/tourist"
Issues = "https://github.com/pogzyb/tourist/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/tourist"]
[tool.hatch.version]
path = "src/tourist/__init__.py"