forked from Qwlouse/shapeguard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (32 loc) · 993 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
[tool.poetry]
name = "shapeguard"
version = "0.1.0"
description = "ShapeGuard is a tool to help with handling shapes in Tensorflow."
authors = ["Venky Iyer <[email protected]>", "Klaus Greff <[email protected]>"]
license = "Apache-2.0"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Utilities",
"Topic :: Scientific/Engineering",
]
readme = "README.org"
repository = "https://github.com/indigoviolet/shapeguard"
[tool.poetry.dependencies]
python = "^3.8"
lark = "^1.1.2"
[tool.poetry.dev-dependencies]
black = "^19.3b0"
pytest = "^5.0"
mypy = "^0.790"
ipykernel = "^6.9.1"
torch = "^1.10.2"
torchvision = "^0.11.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"