init
This commit is contained in:
commit
30a9eef102
2999 changed files with 1898721 additions and 0 deletions
30
pyproject.toml
Normal file
30
pyproject.toml
Normal file
|
@ -0,0 +1,30 @@
|
|||
[project]
|
||||
name = "optifik"
|
||||
version = "0.1.0"
|
||||
description = "Projet scientifique pour des optimisations numériques"
|
||||
authors = [
|
||||
{ name = "François Boulogne", email = "francois.boulogne@cnrs.fr" }
|
||||
]
|
||||
license = "GPL-3.0-or-later"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.8"
|
||||
dependencies = [
|
||||
"numpy",
|
||||
"scipy",
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
dev = [
|
||||
"pytest",
|
||||
"pytest-cov"
|
||||
]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
addopts = "-v --tb=short --disable-warnings"
|
||||
testpaths = ["tests"]
|
||||
pythonpath = ["src"]
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools>=61.0"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue