-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.52 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
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "linien-common"
version = "2.1.0"
authors = [
{ name = "Benjamin Wiegand", email = "[email protected]" },
{ name = "Bastian Leykauf", email = "[email protected]" },
{ name = "Robert Jördens", email = "[email protected]" },
{ name = "Christian Freier", email = "[email protected]" },
{ name = "Doron Behar", email = "[email protected]" },
]
maintainers = [
{ name = "Bastian Leykauf", email = "[email protected]" },
]
description = "Shared components of the Linien spectroscopy lock application."
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"appdirs>=1.4.4,<2.0",
"importlib_metadata>=2.1.3,<9.0",
"numpy>=1.21.5,<2.0",
"rpyc>=6.0,<7.0",
"scipy>=1.8.0,<2.0",
]
[project.optional-dependencies]
dev = [
"black>=22.8.0",
"pre-commit>=2.20.0",
"flake8>=5.0.4",
"isort>=5.10.1",
"flake8-pyproject>=1.2.3",
"setuptools_scm>=6.2",
]
[project.readme]
text = "Have a look at the [project repository](https://github.com/linien-org/linien) for installation instructions."
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/linien-org/linien"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
namespaces = false