-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (65 loc) · 1.74 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
[project]
license = {file = "LICENSE"}
[tool.poetry]
name = "mysiar-data-flow"
version = "0.0.3rc2"
readme = "README.md"
license = "MIT"
repository = "https://github.com/mysiar-org/python-data-flow"
documentation = "https://mysiar-org.github.io/mysiar-data-flow/"
description = "Python data manipulation library"
authors = ["Piotr Synowiec <[email protected]>"]
maintainers = ["Piotr Synowiec <[email protected]>"]
keywords = ["dataframe", "pandas", "polars", "fireducks"]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
]
include = [
"LICENSE",
"CHANGELOG.md"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/mysiar-org/python-data-flow/issues"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
fireducks = "*"
tables = "*"
pyarrow = "*"
pandas = "*"
polars = "*"
black = "*"
flake8 = "*"
pyproject-flake8 = "*"
pytest = "*"
pytest-cov = "*"
poetry = "*"
[project.urls]
documentation = "https://mysiar-org.github.io/mysiar-data-flow"
repository = "https://github.com/mysiar-org/python-data-flow"
issues = "https://github.com/mysiar-org/python-data-flow/issues"
[tool.poetry.extras]
all = [
]
dev = [
"black",
"flake8",
"pyproject-flake8",
"pytest",
"pytest-cov",
"poetry",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.flake8]
max-line-length = 120
exclude = [".git", "venv", "__pychache__", "__init__.py", "build", "dist"]