-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.09 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pystics"
dynamic = ["version"]
description = "STICS in Python"
authors = [{ name = "Etienne Perez", email = "eperez@ombrea.fr" }]
requires-python = ">=3.8, <3.12"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering',
]
dependencies = [
"pandas",
"matplotlib",
"unidecode",
"xmltodict",
]
[project.urls]
Homepage = "https://github.com/OmbreaPV/pySTICS"
Documentation = "https://OmbreaPV.github.io/pySTICS"
[project.optional-dependencies]
test = ["pytest>=5.0.0", "pytest-cov"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "src/pystics/_version.py"
[tool.isort]
profile = "black"
known_first_party = "pystics"
[tool.black]
line_length = 88
target-version = ['py38']