-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (38 loc) · 929 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cimpact"
version = "1.0.2"
authors = [
{ name="sanofi", email="" },
]
description = "CImpact helps identifying causal impact in timeseries data"
keywords = ["causal" , "inference", "timeseries"]
readme = "README.md"
license = {file = "LICENSE.txt"}
requires-python = ">=3.7, <3.11"
dependencies = ["numpy>=1.19.2",
"pandas>=1.1.59",
"matplotlib>=3.3.2",
"tensorflow >= 2.10, <2.15",
"tensorflow-probability[tf] >= 0.18, <= 0.19",
"jinja2",
"prophet>=1.0",
"pyro-ppl>=1.6.0",
"torch>=1.7.0",
"seaborn",
"pyyaml",
"black",
"pytest-cov",
"pytest",
"tf-keras",
"build",
"hatchling"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/Sanofi-Public/CImpact"