-
-
Notifications
You must be signed in to change notification settings - Fork 399
/
pyproject.toml
62 lines (59 loc) · 2.08 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[project]
name = "scalene"
description = "Scalene: A high-resolution, low-overhead CPU, GPU, and memory profiler for Python with AI-powered optimization suggestions"
readme = "README.md"
keywords = ["performance", "profiler", "optimization", "CPU", "GPU", "memory", "LLM"]
authors = [
{name = "Emery Berger", email = "[email protected]"},
{name = "Sam Stern", email = "[email protected]"},
{name = "Juan Altmayer Pizzorno", email = "[email protected]"},
]
requires-python = ">=3.8,!=3.11.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: IPython",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development",
"Topic :: Software Development :: Debuggers",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows"
]
# see https://peps.python.org/pep-0508/#environment-markers for conditional syntax
dependencies = [
"wheel>=0.36.1",
"rich>=10.7.0",
"cloudpickle>=2.2.1",
# "pynvml>=11.0.0,<=11.5",
"nvidia-ml-py>=12.555.43; platform_system !='Darwin'",
"Jinja2>=3.0.3",
"psutil>=5.9.2",
"numpy>=1.24.0,!=1.27",
"astunparse>=1.6.3; python_version < '3.9'",
"pydantic>=2.6",
]
dynamic = ["version"] # computed by setup.py
[project.urls]
"Homepage" = "https://github.com/plasma-umass/scalene"
"Repository" = "https://github.com/plasma-umass/scalene"
[project.scripts]
scalene = "scalene.__main__:main"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=65.5.0",
"setuptools_scm>=8",
"wheel",
"cython",
]