-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.6 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
51
52
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sme_contrib"
description = "Useful modules for use with sme (Spatial Model Editor)"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Liam Keegan", email = "[email protected]" }]
requires-python = ">=3.7"
classifiers = [
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = ["matplotlib", "numpy", "pillow", "pyswarms", "sme>=1.4.0"]
dynamic = ["version"]
[project.urls]
Homepage = "https://spatial-model-editor.github.io/"
Documentation = "https://sme-contrib.readthedocs.io/"
Github = "https://github.com/spatial-model-editor/sme-contrib"
Issues = "https://github.com/spatial-model-editor/sme-contrib/issues"
[project.optional-dependencies]
tests = ["numdifftools", "pytest", "pytest-cov", "scipy"]
docs = [
"ipykernel",
"matplotlib",
"nbsphinx",
"pandoc",
"sphinx>=4.5.0",
"sphinx_rtd_theme>=1.0.0"
]
[tool.setuptools.dynamic]
version = { attr = "sme_contrib.__version__" }
[tool.pytest.ini_options]
testpaths = ["tests"]