-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
35 lines (32 loc) · 970 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 = "keras-flops"
version = "0.1.2"
description = "FLOPs calculator with tf.profiler for neural network architecture written in tensorflow 2.2+ (tf.keras)"
authors = ["tokusumi <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tokusumi/keras-flops"
include = [
"LICENSE",
]
keywords = ["tensorflow2", "flops", "profiler"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[tool.poetry.dependencies]
python = "^3.6"
tensorflow = "^2.2"
[tool.poetry.dev-dependencies]
pytest = "^6.0.1"
pytest-cov = "^2.10.0"
mypy = "^0.782"
black = "^19.10b0"
flake8 = "^3.8.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"