-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (60 loc) · 2.05 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
[project]
name = "osculari"
version = "0.0.4"
description = "Open source library to explore artificial neural networks with psychophysical experiments."
keywords = [
"deep-neural-networks",
"psychophysics",
"cognitive-neuroscience",
"linear-probing",
"explainable-ai",
"interpreting-models"
]
license = {text = "MIT License"}
authors = [
{name="Arash Akbarinia", email="akbarinia.arash@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: GPU",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries",
]
dynamic = ["dependencies"]
[project.urls]
"Homepage" = "https://github.com/ArashAkbarinia/osculari"
"Download" = "https://github.com/ArashAkbarinia/osculari/releases"
"Bug Tracker" = "https://github.com/ArashAkbarinia/osculari/issues"
"Documentation" = "https://osculari.readthedocs.io/en/latest"
"Source Code" = "https://github.com/ArashAkbarinia/osculari"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = true
license-files = ["LICENSE"]
include-package-data = false
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "osculari.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.setuptools.dynamic.optional-dependencies]
dev = {file = "requirements-dev.txt"}
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
"--color=yes"
]
testpaths = ["tests"]