-
Notifications
You must be signed in to change notification settings - Fork 44
/
pyproject.toml
105 lines (96 loc) · 3.29 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[tool.poetry]
name = "temporian"
version = "0.9.0"
description = "Temporian is a Python package for feature engineering of temporal data, focusing on preventing common modeling errors and providing a simple and powerful API, a first-class iterative development experience, and efficient and well-tested implementations of common and not-so-common temporal data preprocessing functions."
authors = [
"Mathieu Guillame-Bert, Braulio Ríos, Guillermo Etchebarne, Ian Spektor, Richard Stotz <[email protected]>",
]
maintainers = ["Mathieu Guillame-Bert <[email protected]>"]
repository = "https://github.com/google/temporian"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
license = "Apache 2.0"
readme = "README.md"
[tool.poetry.build]
script = "config/build.py"
generate-setup-file = true
[tool.poetry.dependencies]
python = "^3.8,<3.12"
absl-py = "^1.3.0"
protobuf = ">=3.20.3"
pandas = ">=1.5.2"
matplotlib = "^3.7.1"
# Extras (keep versions in sync with dev deps)
apache-beam = { version = "^2.48.0", optional = true }
tensorflow = {version = ">=2.12.0,<2.16", optional = true}
polars = { version = "^0.20.15", optional = true }
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
isort = "^5.12.0"
toml = "^0.10.2"
pylint = "^2.14.0"
memory-profiler = "^0.61.0"
scalene = { version = "^1.5.34", python = ">=3.8,<3.11.0 || >3.11.0,<3.12" }
mkdocs = "^1.5.3"
mkdocstrings = { extras = ["python"], version = "^0.23.0" }
mkdocstrings-python = "^1.7.4"
mkdocs-material = "^9.5.17"
mkdocs-gen-files = "^0.4.0"
mkdocs-literate-nav = "^0.6.0"
mkdocs-section-index = "^0.3.5"
mkdocs-jupyter = { version = "^0.24.6", python = "^3.9" }
mkdocs-exclude-search = "^0.6.5"
griffe = "^0.37.0"
bokeh = "^3.1.0"
ipykernel = "^6.22.0"
jupyterlab = "^4.0.0"
apache-beam = "^2.48.0"
pillow = ">=9.5,<11.0"
cairosvg = "^2.7.0"
colorama = "^0.4.6"
tensorflow = ">=2.13.0,<2.16"
# limit this package because versions after 0.35 fail on python 3.8
tensorflow-io-gcs-filesystem = ">=0.33.0,<0.35"
selenium = "^4.11.2"
coverage = "^7.3.1"
mdx-truly-sane-lists = "^1.3"
polars = "^0.20.15"
[tool.poetry.extras]
beam = ["apache-beam"]
tensorflow = ["tensorflow", "tensorflow-io-gcs-filesystem"]
polars = ["polars"]
all = ["apache-beam", "tensorflow", "polars"]
[tool.black]
line-length = 80
preview = true
[tool.pylint]
max-line-length = 80
disable = [
"redefined-builtin",
"missing-class-docstring",
"missing-function-docstring",
"fixme",
"invalid-name",
"no-name-in-module",
]
[tool.pyright]
include = ["temporian"]
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools>=67.6.0"]
build-backend = "poetry.core.masonry.api"