forked from OptimalFoundation/deki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 1 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "deki"
version = "0.0.1.dev1"
authors = [
{ name="Bhavnick Minhas", email="bhavnicksm@gmail.com" },
]
maintainers = [
{ name = "Bhavnick Minhas", email="bhavnicksm@gmail.com"},
]
description = "Deki is a library is to create beautiful interative visuals to understand your optimizer better, because seeing is believing!"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
license = { text = "Apache 2.0"}
dependencies = [
"matplotlib",
"imageio",
"numpy",
"torch==1.13.1",
"tqdm"
]
[project.urls]
"Homepage" = "https://github.com/Dawn-Of-Eve/deki"
"Bug Tracker" = "https://github.com/Dawn-Of-Eve/deki/issues"
[tools.setuptools]
packages = ["deki"]
package-dir = {"" = "src"}