-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (29 loc) · 963 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["matexp"]
[project]
name = "matexp"
version = "1.0.0"
description = "Simulator for Linear Time-Invariant Kinetic Models using the NMODL file format."
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "David McDougall", email = "[email protected]"},
]
urls = {Homepage = "https://github.com/ctrl-z-9000-times/matexp"}
keywords = ["nmodl", "neuron"]
classifiers = [
"Programming Language :: Python :: 3",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = ["nmodl", "numpy", "scipy", "matplotlib"]
scripts = {matexp = "matexp:__main__._placeholder"}