-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
54 lines (48 loc) · 1.58 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
53
54
[project]
name = "Brian2Cuda"
authors = [
{name = 'Denis Alevi'},
{name = 'Moritz Augustin'},
{name = 'Marcel Stimberg'}
]
requires-python = '>=3.10'
dependencies = [
'brian2==2.7.1',
]
dynamic = ["version", "readme"]
description = 'A Brian2 extension to simulate spiking neural networks on GPUs'
keywords = ['computational neuroscience', 'simulation', 'neural networks', 'spiking neurons', 'gpu', 'cuda']
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Environment :: GPU :: NVIDIA CUDA',
'Topic :: Scientific/Engineering :: Bio-Informatics'
]
[project.optional-dependencies]
test = ['pytest', 'pytest-xdist>=1.22.3']
docs = ['sphinx>=1.8']
[project.urls]
Documentation ='https://brian2cuda.readthedocs.io/'
Source = 'https://github.com/brian-team/brian2cuda'
Tracker = 'https://github.com/brian-team/brian2cuda/issues'
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools.dynamic]
readme = {file = 'README.md', content-type = "text/markdown"}
[tool.setuptools_scm]
version_scheme = 'post-release'
local_scheme = 'no-local-version'
write_to = 'brian2cuda/_version.py'
tag_regex = '^(?P<version>v\d+(?:\.\d+){0,2}[^\+]*(?:\+.*)?)$'
fallback_version = 'unknown'
[build-system]
requires = [
"setuptools>=61",
"setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"