-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 773 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 773 Bytes
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
[project]
name = "dsc_data_analysis"
version = "0.0.2"
authors = [
{ name = "Matteo Pecchi"}
]
description = "Tool for automatic analysis of multiple DSC results"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.21.2",
"pandas>=1.3.3",
"matplotlib>=3.4.3",
"seaborn>=0.11.2",
"openpyxl",
"pyarrow",
"scipy>=1.7.1",
"lmfit>=1.0.2",
"myfigure>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/mpecchi/dsc_data_analysis"
Documentation = "https://dsc-data-analysis.readthedocs.io/en/latest/"
[tool.black]
line-length = 100