-
Notifications
You must be signed in to change notification settings - Fork 118
/
pyproject.toml
48 lines (39 loc) · 1.06 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
[build-system]
requires = ["setuptools>=30.3.0", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "daft"
authors = [
{name = "Daft Developers", email = "[email protected]"},
]
description = "PGM rendering at its finest"
readme = {file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.9"
license = {text = "BSD-3-Clause"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"matplotlib",
"numpy",
]
dynamic = ["version"]
[project.optional-dependencies]
test = ["pytest"]
docs = ["myst_nb", "sphinx", "jupytext"]
[project.urls]
Homepage = "http://daft-pgm.org"
Documentation = "http://docs.daft-pgm.org"
Repository = "https://github.com/daft-dev/daft"
[tool.setuptools_scm]
[tool.black]
line-length = 79
[tool.ruff]
target-version = "py39"
line-length = 79
select = ["UP"]