-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (40 loc) · 918 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "snncutoff"
version = "0.0.0"
description = ""
readme = { file = ".github/readme.md", content-type="text/markdown" }
authors = [
{ name = "Dengyu Wu" },
{ name = "Minghong Xu" },
]
classifiers = [
"Private :: Do Not Upload",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.9"
dependencies = [
"numpy",
"torch",
"tqdm",
]
optional-dependencies.tests = [
]
optional-dependencies.docs = [
"sphinx",
"sphinx-book-theme",
"myst-parser",
]
optional-dependencies.dev = [
"snncutoff[tests,docs]",
"build",
"twine",
]