-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
75 lines (61 loc) · 1.98 KB
/
setup.cfg
File metadata and controls
75 lines (61 loc) · 1.98 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# TorchMeter, AGPL-3.0 license
# Author: Ahzyuan
# Repo: https://github.com/TorchMeter/torchmeter
[metadata]
name = torchmeter
version = attr: torchmeter.__version__
author = Ahzyuan
author_email = hzy_dev@yeah.net
description ="Torchmeter ⏲️: Your all-in-one tool for Pytorch model analysis, measuring Params, FLOPs/MACs(aka. MACC or MADD), Memory cost, Inference time and Throughput 🚀"
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/TorchMeter
download_url = https://pypi.org/project/torchmeter
project_urls =
Source Code = https://github.com/TorchMeter/torchmeter
Documentation = https://docs.torchmeter.top/latest/
keywords = pytorch, model-analysis, parameter-estimation, inference-throughput, memory-estimation, calculation-estimation
license = AGPL-3.0
classifiers =
License :: OSI Approved :: GNU Affero General Public License v3
Development Status :: 4 - Beta
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
[options]
include_package_data = True
packages = find:
python_requires = >=3.8
install_requires = file: requirements.txt
[options.packages.find]
exclude =
doc*
document*
test*
refer*
[options.extras_require]
docs =
mike
mkdocs
mkdocstrings[python]
mkdocs-material
mkdocs-jupyter
mkdocs-glightbox
mkdocs-inline-select-svg-plugin
test =
ruff>=0.6.0
mypy
pytest
pytest-cov
pytest-xdist
[options.entry_points]
console_scripts =
torchmeter = torchmeter.__cli__:main