forked from wandb/weave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (70 loc) · 2.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "weave"
description = "A toolkit for building composable interactive data driven applications."
readme = "README.md"
license = {text = "Apache-2.0"}
maintainers = [{name = "W&B", email = "support@wandb.com"}]
authors = [
{name = "Shawn Lewis", email = "shawn@wandb.com"},
{name = "Danny Goldstein", email = "danny@wandb.com"},
{name = "Tim Sweeney", email = "tim@wandb.com"},
{name = "Nick Peneranda", email = "nick.penaranda@wandb.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Flask",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Database :: Front-Ends",
"Topic :: Office/Business :: Financial :: Spreadsheet",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Widget Sets",
]
requires-python = ">=3.9"
dynamic = ["version", "dependencies", "optional-dependencies"]
[project.scripts]
weave = "weave.cli:cli"
[project.urls]
Company = "https://wandb.com"
Documentation = "https://docs.wandb.com/"
Changes = "https://github.com/wandb/weave/releases"
"Source Code" = "https://github.com/wandb/weave"
"Issue Tracker" = "https://github.com/wandb/weave/issues/"
Twitter = "https://twitter.com/weights_biases"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["weave"]
[tool.setuptools.dynamic]
version = {attr = "weave.version.VERSION"}
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.dynamic.optional-dependencies]
examples = {file = ["requirements.ecosystem.txt"]}
engine = {file = ["requirements.engine.txt"]}
ecosystem = {file = ["requirements.ecosystem.txt"]}
datadog = {file = ["requirements.datadog.txt"]}
modal = {file = ["requirements.modal.txt"]}
[tool.pytest.ini_options]
testpaths = ["weave"]
filterwarnings = ["error"]
[tool.autopep8]
max_line_length = 180
ignore = "E714"
[tool.ruff]
line-length = 180
show-fixes = true
select = [
"FIX001", # https://beta.ruff.rs/docs/rules/#flake8-fixme-fix
"FIX003",
"F541",
]
[tool.flake8]
max-line-length = 180