-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.09 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pySNOM"
requires-python = ">=3.10"
dynamic = ["dependencies", "version"]
authors = [
{name = "Gergely Németh", email = "ngergihun@gmail.com"},
{name = "Ferenc Borondics", email = "borondics.accounts@gmail.com"},
{name = "Marko Toplak", email = "marko.toplak@gmail.com"},
]
maintainers = [
{name = "Gergely Németh", email = "ngergihun@gmail.com"}
]
description = "Python tools for SNOM data processing."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["snom", "near-field", "data processing"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "pySNOM.__version__"}
[project.urls]
"Homepage" = "https://github.com/Quasars/pySNOM"
"Bug Reports" = "https://github.com/Quasars/pySNOM/issues"
"Source" = "https://github.com/Quasars/pySNOM/"