-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (40 loc) · 907 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
36
37
38
39
40
41
42
43
44
[project]
name = "pqp"
version = "0.3.5"
description = "Subroutines for structural causal modeling"
license = {file = "LICENSE.txt"}
authors = [{name = "Leo Ware"}]
dependencies = [
"pandas",
"numpy",
"tomli"
]
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["causal inference", "causal identification"]
[project.optional-dependencies]
dataviz = [
"matplotlib",
"networkx"
]
dev = [
"sphinx",
"maturin",
"sphinx-autobuild",
"sphinx_automodapi",
"pytest",
"networkx",
]
[project.urls]
Homepage = "https://leo-ware.github.io/capstone/"
Source = "https://github.com/leo-ware/capstone"
[build-system]
requires = ["maturin>=0.14,<0.15"]
build-backend = "maturin"
[tool.maturin]
python-source = "python"
# compatibility = "linux"