-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 743 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 743 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
39
40
[project]
name = "plane-spotter"
version = "0.0.0-alpha0"
description = "Spots planes using ADS-B data and sends events to various backends"
requires-python = ">=3.10"
dependencies = [
"click",
"haversine",
"hydra-core",
"tweepy",
"requests",
"structlog",
"types-requests",
"selenium",
]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"freezegun",
"mypy",
"pytest",
"pytest-cov",
"pytest-httpserver",
"pytest-structlog",
"testfixtures",
]
[tool.setuptools]
py-modules = []
include-package-data = true
[tool.setuptools.package-data]
"plane_spotter.data" = ["airport-codes.csv"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"