-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 1.27 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
[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 = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
dependencies = [
"numpy",
"scipy",
"matplotlib"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "black", "isort", "mypy"]
[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