-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
59 lines (53 loc) · 1.42 KB
/
setup.cfg
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
[metadata]
name = snnbackends
version = attr: snnbackends.__version__
description = compares snn algorithms against neumann algorithms
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/a-t-0/snnbackends
author = a-t-0
author_email = no-email@no-email.org
maintainer = a-t-0
maintainer_email = no-email@no-email.org
license = AGPLv3
license_files= licence
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Affero General Public License v3
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering :: Artificial Intelligence
[options]
packages = find:
package_dir =
=src
# Dependencies
install_requires =
jsons>=1.6.3
matplotlib>=3.6.1
networkx>=2.8.7
numpy>=1.23.4
pyannotate>=1.2.0
pytest-cov>=4.0.0
typeguard>=2.13.3
python_requires = >=3.10
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
snnbackends = snnbackends:main
[bdist_wheel]
universal = 1
[mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_unused_ignores = true
[mypy-tests.*]
disallow_untyped_defs = false