-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
54 lines (47 loc) · 1.76 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
52
53
54
[build-system]
requires = ["setuptools>=42", "setuptools-scm[toml]>=4.1", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
root = "."
write_to = "src/pytpx3/_version.py"
[tool.setuptools.packages.find]
where = ["src"]
[project]
dynamic = ["version"]
name = "pytpx3"
license = "GPL-3.0"
keywords = ["Karabo", "SCADA", "camera", "control system"]
authors = [
{name = "Bjoern Senfftleben", email = "bjoern.senfftleben@xfel.eu"}
]
description = "Python package to read and process the raw data stream produced by Timepix3 detectors at European XFEL."
readme = "README.md"
# Classifiers help users find your project by categorizing it.
#
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
]
dependencies = [
]
# List URLs that are relevant to your project
#
# This field corresponds to the "Project-URL" and "Home-Page" metadata fields:
# https://packaging.python.org/specifications/core-metadata/#project-url-multiple-use
# https://packaging.python.org/specifications/core-metadata/#home-page-optional
#
# Examples listed include a pattern for specifying where the package tracks
# issues, where the source is hosted, where to say thanks to the package
# maintainers, and where to support the project financially. The key is
# what's used to render the link text on PyPI.
[project.urls]
"Homepage" = "https://github.com/European-XFEL/pytpx3"
"Bug Reports" = "https://github.com/European-XFEL/pytpx3/issues"
"Source" = "https://github.com/European-XFEL/pytpx3"