-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
44 lines (41 loc) · 1.67 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ngclearn"
version = "1.2.beta3"
description = "Simulation software for building and analyzing arbitrary predictive coding, spiking network, and biomimetic neural systems."
authors = [
{name = "Alexander Ororbia", email = "[email protected]"},
{name = "William Gebhardt", email = "[email protected]"},
]
readme = "README.md"
keywords = ['python', 'ngc-learn', 'predictive-processing', 'predictive-coding',
'jax', 'spiking-neural-networks', 'biomimetics', 'bionics', 'computational-neuroscience']
requires-python = ">=3.8" #3.10
license = {text = "BSD-3-Clause License"}
classifiers=[
"Development Status :: 4 - Beta", #3 - Alpha", # 5 - Production/Stable
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: Unix"
]
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]} ## use classic requirements file
[project.urls]
Homepage = "https://github.com/NACLab/ngc-learn"
Documentation = "https://ngc-learn.readthedocs.io/"
"Lab Page" = "https://www.cs.rit.edu/~ago/nac_lab.html"
Changelog = "https://github.com/NACLab/ngc-learn/blob/main/history.txt"
[tool.setuptools.packages.find]
exclude = ["docs"]