-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (37 loc) · 1.22 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
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "py-lmd"
version = "1.1.0"
description = "Read, Modify and Create new shape files for the Leica LMD6 & LMD7"
readme = "README.md"
requires-python = ">=3.8, !=3.12.*"
license = {file = "LICENSE"}
keywords = ["LMD"]
dynamic = ["dependencies", "optional-dependencies"]
authors = [
{name = "Georg Wallmann"},
{name = "Sophia Maedler"},
{name = "Niklas Schmacke"},
]
maintainers = [
{name = "Georg Wallmann", email = "[email protected]"},
{name = "Sophia Maedler", email = "[email protected]"},
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.dynamic.optional-dependencies]
dev = {file = ["requirements_dev.txt"]}
[project.urls]
Homepage = "https://github.com/MannLabs/py-lmd"
Documentation = "https://mannlabs.github.io/py-lmd/html/index.html"
Source = "https://github.com/MannLabs/py-lmd"