-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathpyproject.toml
54 lines (52 loc) · 1.27 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
[tool.black]
line-length = 88
target-version = ['py38', 'py39']
include = '\.pyi?$'
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
^/foo.py # exclude a file named foo.py in the root of the project (in addition to the defaults)
'''
[build-system]
requires = [
"setuptools>=64",
"wheel",
"cmdstanpy>=1.0.4",
]
build-backend = "setuptools.build_meta"
[project]
name = "orbit-ml"
dynamic = ["version"]
description = "Orbit is a package for Bayesian time series modeling and inference."
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"cmdstanpy>=1.0.4",
"numpy>=1.18",
"pandas>=1.0.3",
"tqdm>=4.36.1",
"importlib_resources",
"matplotlib>=3.3.2",
"scipy>=1.4.1",
"torch>=1.11.0",
"seaborn>=0.10.0",
"pyro-ppl>=1.4.0",
"arviz",
]
license = {text = "Apache License 2.0"}
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.optional-dependencies]
dev = [
"setuptools>=64",
"wheel",
"pytest",
"black",
]