-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_pyproject.toml
More file actions
52 lines (41 loc) · 1.19 KB
/
Copy path_pyproject.toml
File metadata and controls
52 lines (41 loc) · 1.19 KB
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
# initial version created with pdm import setup.py
# additions:
# - dynamic versioning
# - build sysetem
# - package scrips
[project]
name = "picocosmo"
dynamic = ["version"]
description = " Analysis of waveforms from cosmic ray detectors"
readme = "README.md"
authors = [
{name = "Guenter Quast", email = "Guenter.Quast@online.de"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = []
license = {text = "GNU Public Licence"}
requires-python = ">=3.6"
[tool.setuptools]
script-files = [
"runCosmo.py", "CosmoGui.py" ]
[tool.setuptools.package-data]
picocosmo = ["images/*", "doc/*"]
[project.urls]
Homepage = "https://www.etp.kit.edu/~quast/"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = false
[tool.setuptools.packages.find]
include = ["picocosmo.*"]
[tool.setuptools.dynamic]
version = {attr = "picocosmo.__version__"}