-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (37 loc) · 936 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ais_analyzer"
version = "0.0.1"
authors = [
{ name = "Sondre" },
{ name = "Tord" },
{ name = "Sara" },
{ name = "Kevin" },
]
description = "A small package to search and navigate downloaded AIS data"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 1 - Planning",
"Environment :: Console",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
]
dependencies=[
"numpy~=1.23.1",
"pandas~=1.4.4",
"shapely~=1.8.1",
"geopy~=2.3.0",
]
[project.scripts]
ais = "ais_analyzer:__main__.__main__"
[project.urls]
"Homepage" = "https://github.com/bkkas/ais"
"Bug Tracker" = "https://github.com/bkkas/ais/issues"
# Testing
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "info"