-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (31 loc) · 995 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
[tool.poetry]
name = "causaltensor"
version = "0.1.8"
description = "Package for causal inference in panels"
authors = ["Tianyi Peng <[email protected]>"
"Arushi Jain <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/TianyiPeng/causaltensor"
repository = "https://github.com/TianyiPeng/causaltensor"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
]
keywords = ["causal", "inference", "panel", "matrix", "tensor"]
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.18"
importlib-metadata = {version = "^1.0", python = "<=3.11"}
toolz = "^0.12.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
cvxpy = "^1.4.3"
cvxopt = "^1.2"
ipython = "^8.23.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"