-
Notifications
You must be signed in to change notification settings - Fork 305
/
pyproject.toml
45 lines (41 loc) · 1.23 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ptflops"
version = "0.7.5"
dependencies = [
"torch>=2.0",
]
requires-python = ">=3.9"
authors = [
{name = "Vladislav Sovrasov", email = "sovrasov.vlad@gmail.com"},
]
maintainers = [
{name = "Vladislav Sovrasov", email = "sovrasov.vlad@gmail.com"},
]
description = "Flops counter for neural networks in pytorch framework"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["pytorch", "cnn", "transformer"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9"
]
[project.optional-dependencies]
dev = [
"flake8==3.8.1",
"flake8-import-order==0.18.1",
"isort==4.3.21",
"torchvision>=0.5.0",
"pytest==7.1.2",
"packaging",
]
[project.urls]
Homepage = "https://github.com/sovrasov/flops-counter.pytorch/"
Documentation = "https://github.com/sovrasov/flops-counter.pytorch/blob/master/README.md"
Repository = "https://github.com/sovrasov/flops-counter.pytorch.git"
"Bug Tracker" = "https://github.com/sovrasov/flops-counter.pytorch/issues"
Changelog = "https://github.com/sovrasov/flops-counter.pytorch/blob/master/CHANGELOG.md"
[tool.setuptools.packages.find]
include = ["ptflops"]