-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (29 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
31 lines (29 loc) · 1.08 KB
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.1.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 = "dam1784@rit.edu"},
]
urls = {Homepage = "https://github.com/D-McDougall/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 = ["neuron", "numpy", "scipy", "dill"]
scripts = {matexp = "matexp:__main__._placeholder", matexp-manual = "matexp:manual._placeholder"}