-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
29 lines (25 loc) · 1.38 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
[build-system]
requires = ["setuptools","setuptools_scm>=8"] # the build tool to use
build-backend = "setuptools.build_meta" # the function to use to build the package
[project]
name = "pymecht"
#version = "0.9"
dynamic = ["version"]
description = "This is PYthon-based repository is for MECHanics of Tissue mechanics. The focus is on flexibility of adding new constitutive models and varying their parameters."
readme = "README.md"
authors = [{ name = "Ankush Aggarwal", email = "[email protected]" }, { name = "Ross Williams", email = "[email protected]" }]
dependencies = ["matplotlib >= 3.4.1", "numpy >= 1.22.2", "pyDOE >= 0.3.8", "scipy >= 1.8.0", "torch >= 1.13.1", "sympy >= 1.10.1", "tqdm >= 4.61.0", "pandas >= 1.2.4"]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["pytest >= 7.2.0"]
[tool.setuptools_scm]
version_file = "pymecht/_version.py"
version_scheme = "no-guess-dev"
local_scheme = "no-local-version"
#[project.scripts]
#greet = "greetings.command:process"
# [tool.setuptools.packages.find]
# where = ["src"] # list of folders that contain the packages (["."] by default)
# include = ["*.py"] # package names should match these glob patterns (["*"] by default)
# # exclude = ["my_package.tests*"] # exclude packages matching these glob patterns (empty by default)
# namespaces = false # to disable scanning PEP 420 namespaces (true by default)