-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.28 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
[project]
name = "fastmark"
version = "0.1.4"
description = "Run a subset of the pyperformance benchmarks quickly"
readme = "README.md"
requires-python=">=3.11"
dependencies = [
"asgiref==3.3.4",
"certifi==2021.5.30",
"chameleon==3.9.1",
"coverage==7.12.0",
"django==3.2.4",
"docutils==0.18.1",
"dulwich==0.24.10",
"genshi==0.7.7",
"html5lib==1.1",
"legacy-cgi==2.6",
"mako==1.1.4",
"markupsafe==2.0.1",
"mpmath==1.2.1",
"networkx==3.4.2",
"pyaes==1.6.1",
"pyperf>=2.8.1",
"python-docs-theme==2024.6",
"pytz==2021.1",
"setuptools>=75.8.0",
"six==1.16.0",
"sphinx==7.3.7",
"sqlalchemy==1.3.20",
"sqlglot==4.6.0",
"sqlparse==0.4.1",
"sympy==1.13.1",
"tomli==2.0.1",
"tornado==6.5",
"webencodings==0.5.1",
"websockets==11.0.3",
]
[project.scripts]
fastmark = "fastmark.fastmark:cli"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
packages = ["fastmark", "fastmark.pyperformance"]
[tool.setuptools.package-dir]
fastmark = "."
"fastmark.pyperformance" = "pyperformance/pyperformance"
[tool.setuptools.package-data]
"fastmark" = ["baselines.py", "regexes.py"]
"fastmark.pyperformance" = ["data-files/**"]