-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
55 lines (49 loc) · 1.51 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
55
[project]
name = "Brian2GeNN"
authors = [
{name = 'Thomas Nowotny'},
{name = 'Marcel Stimberg'},
{name = 'Dan Goodman'},
]
requires-python = '>=3.9'
dependencies = [
'brian2>=2.5.0.2,<2.6',
'setuptools>=61',
'numpy<2'
]
dynamic = ["version", "readme"]
description = 'An interface to use the GeNN framework as a device in Brian 2'
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics'
]
[project.optional-dependencies]
test = ['pytest', 'pytest-xdist>=1.22.3']
docs = ['sphinx>=1.0.1', 'sphinxcontrib-issuetracker']
[project.urls]
Documentation ='https://brian2genn.readthedocs.io/'
Source = 'https://github.com/brian-team/brian2genn'
Tracker = 'https://github.com/brian-team/brian2genn/issues'
[tool.setuptools]
zip-safe = false
packages = ['brian2genn']
[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 = 'brian2genn/_version.py'
tag_regex = '^(?P<version>\d+(?:\.\d+){0,2}[^\+]*(?:\+.*)?)$'
fallback_version = 'unknown'
[build-system]
requires = [
"setuptools>=61",
"setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"