-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
35 lines (35 loc) · 881 Bytes
/
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
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
assets = ["*.py", "*.css"]
comgra = ["*.py"]
scripts = ["*.py"]
[project]
name = "comgra"
version = "0.11.5"
authors = [
{ name="Florian Dietz", email="[email protected]" },
]
dependencies = [
'torch',
'dash',
'dash-svg',
'dash-bootstrap-components>=1.5.0',
'msgpack',
'numpy',
'pandas',
]
description = "A package for analyzing computation graphs"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/FlorianDietz/comgra"
"Bug Tracker" = "https://github.com/FlorianDietz/comgra/issues"
[project.scripts]
comgra = "scripts.server:main"
comgra-test-run = "scripts.run:main"