-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (75 loc) · 2.39 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
78
79
80
81
82
83
84
85
86
# More info on https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "qdl_zno_analysis"
version = "0.3.1"
authors = [
{name = "Vasilis Niaouris", email = "vasilisniaouris@gmail.com"},
]
description = "A Python package for analyzing spectral and temporal data."
readme = "README.md"
requires-python = ">=3.8"
keywords = ["data", "analysis", "spectroscopy", "time-dependent", "g2", "lifetime"]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Framework :: Jupyter",
"Topic :: Utilities",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"numpy>=1.24.2",
"pandas",
"pint>=0.21",
"pint_xarray",
"scipy",
"xarray",
]
# dynamic = ["version"]
[project.optional-dependencies]
all = [
"qdl_zno_analysis[visualization]",
"qdl_zno_analysis[spectroscopy]",
"qdl_zno_analysis[example_data]",
]
visualization = [
"matplotlib>=3.7.1",
]
spectroscopy = [
"sif_parser",
"spe_loader",
"xmltodict",
]
example_data = [
"gdown",
"jupyter",
"requests",
]
#examples = ["notebook"]
[project.urls]
#homepage = "https://example.com"
documentation = "https://vasilisniaouris.github.io/qdl_zno_analysis/"
repository = "https://github.com/vasilisniaouris/qdl_zno_analysis/"
changelog = "https://github.com/vasilisniaouris/qdl_zno_analysis/blob/master/CHANGELOG.md"
# [project.optional-dependencies]
# pdf = ["ReportLab>=1.2", "RXP"]
# rest = ["docutils>=0.3", "pack ==1.1, ==1.3"]
# [project.scripts]
# my-script = "my_package.module:function"
[tool.setuptools] # Setuptools specific
platforms = ["Any"]
include-package-data = true
# More on datafiles: https://setuptools.pypa.io/en/latest/userguide/datafiles.html
[tool.setuptools.package-data]
"*" = ["*.ipynb", "*.csv"]
[docs] # I implemented this so I can use them in the conf.py file that makes the docs with sphinx
fancy-name = "QDL ZnO Data Analysis Toolkit"
copyright = "2023, Vasilis Niaouris"
# ... other project metadata fields as specified in:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/