-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.43 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
[build-system]
requires = ["setuptools>=42", "setuptools_scm[toml]", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "elasticipy"
description = "A Python library for elasticity tensor computations"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Dorian Depriester", email = "dorian.dep@gmail.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"numpy",
"scipy",
"matplotlib"
]
requires-python = ">=3.10"
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "pymatgen", "isort", "mp_api"]
[project.urls]
Homepage = "https://pypi.org/project/Elasticipy/"
Source = "https://github.com/DorianDepriester/Elasticipy"
Tracker = "https://github.com/DorianDepriester/Elasticipy/issues"
Documentation = "https://elasticipy.readthedocs.io/"
[tool.setuptools_scm]
version_scheme = "post-release" # Optionnel, ajuste la version entre les tags
local_scheme = "no-local-version" # Optionnel, désactive les informations locales dans les versions non taguées
[tool.pytest.ini_options]
addopts = "--cov=src/Elasticipy --cov-report=xml"
[tool.coverage.run]
omit = [
"src/Elasticipy/gui.py",
]