-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (62 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
63
64
65
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "causal2020"
author = "Timothy Brathwaite"
author-email = "[email protected]"
home-page = "https://github.com/hassan-obeid/tr_b_causal_2020"
requires = [
"checkrs",
"causalgraphicalmodels",
"graphviz",
"lxml",
"matplotlib",
"numpy",
"pyprojroot",
"scikit-learn",
"scipy",
"seaborn",
"tensorflow==1.15.0",
"tensorflow_probability==0.8.0",
"torch<1.7.0",
"tqdm",
]
requires-python=">=3.6"
description-file = "README.md"
keywords= "causal inference, causal discovery, testing, deconfounder"
classifiers=[
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Environment :: Console",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: BSD License",
]
[tool.black]
line-length = 79
py36 = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| notebooks
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
)/
'''