-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
78 lines (66 loc) · 1.73 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pisa-ssh"
description = "Pseudo Infrastructure for Scalable Applications (PISA)"
authors = [
{ name="Michael Hohenstein", email="[email protected]" },
]
readme = "README.md"
requires-python= ">=3.11"
keywords = ["data", "analysis", "education", "university", "students", "physics"]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
# currently no dependencies
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "pisa.__version__"}
[project.optional-dependencies]
# TODO: Update???
dev = [
#"coverage",
#"sphinx",
#"sphinx-rtd-theme",
#"mock",
#"pytest",
#"flake8",
#"black",
#"isort",
"build",
"twine",
]
[project.urls]
"Homepage" = "https://mitchilaser.github.io/pisa/"
"Repository" = "https://github.com/MitchiLaser/pisa"
[project.scripts]
pisa = "pisa.__main__:main"
########## TODO ???? ##############
#[tool.pytest.ini_options]
#testpaths = "kafe2/test"
#python_files = "test*.py"
#[tool.coverage.run]
#source = [
#"kafe2",
#]
#omit = [
#"kafe2/test/*",
#]
#command_line= '-m unittest discover -v -s kafe2/test -p "*.py"'
[tool.black]
line-length = 150
[tool.isort]
profile = "black"