-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 852 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 852 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "infinimetrics"
version = "0.1.0"
description = "An InfiniTensor-featured comprehensive accelerator evaluation framework"
dependencies = []
[project.optional-dependencies]
mongodb = ["pymongo>=4.0.0"]
dashboard = ["streamlit>=1.28.0", "plotly>=5.0.0", "pandas>=2.0.0"]
dev = ["pytest>=7.0.0", "black>=23.0.0", "flake8>=6.0.0"]
[tool.black]
target-version = ['py310']
line-length = 88
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| __pycache__
)/
'''
[tool.setuptools.packages.find]
include = ["infinimetrics*", "dashboard*", "db*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]