-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
62 lines (54 loc) · 1.48 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
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[project]
name = "vflow"
version = "0.1.4"
authors = [
{ name="Chandan Singh", email="[email protected]" },
{ name="James Duncan", email="[email protected]" },
{ name="Abhineet Agarwal", email="[email protected]" },
{ name="Rush Kapoor", email="[email protected] " },
]
maintainers = [
{ name="James Duncan", email="[email protected]" },
]
description = "A framework for doing stability analysis with PCS."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
]
license = {text = "MIT"}
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://vflow.csinva.io/"
Issues = "https://github.com/Yu-Group/veridical-flow/issues"
[project.optional-dependencies]
nb = [
"tqdm",
"jupyter",
"jupyterlab",
"scikit-learn>=0.23.0",
"torch>=1.0.0",
"torchvision",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/notebooks",
]
[tool.hatch.build.targets.wheel]
packages = ["vflow"]
[tool.coverage.run]
branch = true
source_pkgs = ["vflow", "tests"]