-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (61 loc) · 1.56 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ARCANA"
dynamic = ["version"]
requires-python = ">= 3.10"
authors = [
{name = "Fernando M. Quintana", email = "[email protected]"},
]
maintainers = [
{name = "Fernando M. Quintana", email = "[email protected]"}
]
description = "ARCANA neural model simulation on PyTorch."
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
dependencies = [
"torch",
"numpy",
"matplotlib",
"seaborn",
"tonic",
"tensorboard",
"boilerplot@git+https://github.com/fehlings/boilerplot.git",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"black[jupyter]",
"isort",
"flake8-black",
"flake8-isort",
"sphinx>=4.0",
"sphinx-book-theme",
"myst_nb",
"pytest"
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "arcana/__init__.py"
[tool.hatch.build.targets.wheel]
include = [
"arcana/",
]
[project.urls]
Homepage = "https://github.com/ferqui/ARCANA"
Documentation = "https://dynapsetorch.readthedocs.io/en/latest/"
Repository = "https://github.com/ferqui/ARCANA"