-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 1.03 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
32
33
34
35
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "neurodriver"
version = "0.3.2"
description = "LPU class with support for various neuron and synapse models"
license = { text = "BSD" }
authors = [{ name = "Neurokernel Development Team", email = "neurokernel-dev@columbia.edu" }]
maintainers = [{ name = "Neurokernel Development Team", email = "neurokernel-dev@columbia.edu" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Software Development"
]
dependencies = [
"neurokernel>=0.3.1"
]
[project.urls]
Homepage = "https://github.com/neurokernel/neurodriver/"
Download = "https://github.com/neurokernel/neurodriver/"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["neurodriver*"]