-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 952 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
# pyproject.toml
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
#
# pip install -e .
[build-system]
requires = ['setuptools>=61.0']
build-backend = 'setuptools.build_meta'
[project]
name = "pyge"
requires-python = ">= 3.10"
description = "PYthon GEodesy"
version = "2024.11.12"
dependencies = ["black>=22.6", "pytest"]
authors = [ {name = "Thomas Knudsen", email = "[email protected]"} ]
maintainers = [ {name = "Thomas Knudsen", email = "[email protected]"} ]
readme = "README.md"
keywords = ["geodesy", "geoscience"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License"
]
# https://setuptools.pypa.io/en/stable/userguide/entry_point.html
[project.scripts]
plonk = "cli:plonk"
plink = "cli:plink"
agurk = "cli:agurk"
ellps = "cli:ellps"
# https://stackoverflow.com/a/49033954/618276
# https://docs.pytest.org/en/stable/getting-started.html
[tool.pytest.ini_options]
pythonpath = ["."]