-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (43 loc) · 1.04 KB
/
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
44
45
46
47
[project]
name = "kanaries_track"
dynamic = ["version"]
requires-python = ">=3.6"
description = "kanaries_track: track to kanaries data infra"
authors = [ { name = "kanaries", email = "[email protected]" } ]
license-files = { paths = ["LICENSE"] }
readme = "README.md"
keywords = [ 'kanaries', 'track' ]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"dateutils>=0.6.12",
"requests>=2.31.0",
"backoff>=2.2.1"
]
[project.urls]
homepage = "https://github.com/Kanaries/kanaries-track"
repository = "https://github.com/Kanaries/kanaries-track"
# changelog, documentation
[project.optional-dependencies]
dev = [
"build",
"twine",
"pytest",
]
[tool.hatch]
version = { path = "kanaries_track/__init__.py" }
[tool.hatch.build]
include = [
"kanaries_track",
]
exclude = [ "/tests" ]
[tool.hatch.build.targets.sdist]
include = [
"README.md", "LICENSE",
"kanaries_track"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"