-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (52 loc) · 1.42 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
[tool.poetry]
name = "cubyc"
version = "0.1.2"
description = "The repository for all your experiments"
authors = [
"Esteban Safranchik <[email protected]>",
"Jens C. Rischbieth <[email protected]>"
]
license = "LGPL-3.0"
repository = "https://github.com/cubyc-dev/cubyc"
readme = "README.md"
documentation = "https://docs.cubyc.com"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: SQL",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)"
]
[tool.poetry.dependencies]
python = ">=3.8"
aiohttp = ">=3.9.5"
fasteners = ">=0.19"
gitpython = ">=3.1.43"
ijson = ">=3.2.3"
ipython = ">=7.31.1"
keyring = ">=25.2.1"
pandas = ">=2.0.0"
psutil = ">=5.9.8"
pydantic = ">=2.7.1"
pyyaml = ">=6.0.1"
rich = ">=12.4.0"
tabulate = ">=0.9.0"
typer = ">=0.12.0"
wonderwords = ">=2.2.0"
numpy = [
{ version = ">=1.3.0", python = "<3.12" },
{ version = ">=2.0.0", python = ">=3.12" }
]
duckdb = [
{ version = ">=0.8.0", python = "<3.12" },
{ version = ">=1.0.0", python = ">=3.12" }
]
[tool.poetry.scripts]
cubyc = "cubyc.cli:app"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"