-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
34 lines (31 loc) · 947 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
[tool.poetry]
name = "shapeguard"
version = "0.1.0"
description = "ShapeGuard is a tool to help with handling shapes in Tensorflow."
authors = ["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.md"
repository = "https://github.com/Qwlouse/shapeguard"
[tool.poetry.dependencies]
python = "^3.6"
tensorflow = "^1.14"
numpy = "^1.17"
tensorflow-probability = "^0.7.0"
[tool.poetry.dev-dependencies]
lark-parser = "^0.7.1"
black = "^19.3b0"
pytest = "^5.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"