-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
37 lines (33 loc) · 1.08 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "blenderneuron"
version = "2.1.1"
description = "Interface for Blender <-> NEURON"
readme = "README.txt"
authors = [
{ name = "Justas Birgiolas", email = "[email protected]" },
{ name = "Alistair Peet", email = "[email protected]" },
]
license = { text = "MIT" }
keywords = ["Blender", "NEURON", "neuroscience", "visualization", "neural networks", "neurons", "3D"]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Visualization",
]
requires-python = ">=3.7"
dependencies = []
[project.urls]
homepage = "https://BlenderNEURON.org"
[tool.setuptools]
packages = { find = { include = ["blenderneuron"] } }
include-package-data = true
[tool.setuptools.package-data]
blenderneuron = ["*.json", "*.hoc"]