-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 823 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 823 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
31
32
33
34
35
36
37
38
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "hostile"
authors = [{name = "Bede Constantinides", email = "b@bede.im"}]
license = {file = "LICENSE"}
readme = "README.md"
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
requires-python = ">=3.10"
dependencies = [
"defopt>=7.0.0",
"dnaio>=1.2.0",
"httpx>=0.24.1",
"platformdirs>=3.5.1",
"tqdm>=4.65.0",
]
[project.urls]
Home = "https://github.com/bede/hostile"
[project.scripts]
hostile = "hostile.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=7.3.1",
"pre-commit>=3.3.2",
"flit>=3.9.0"
]
[tool.pytest.ini_options]
markers = [
"online: involves downloading standard test index from remote bucket",
]
addopts = "-m 'not online'"