-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
99 lines (82 loc) · 2.08 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
[tool.poetry]
name = "olapy"
version = "0.8.2"
authors = ["Abilian SAS"]
description = "OlaPy, an experimental OLAP engine based on Pandas"
classifiers = [
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
]
homepage = "https://github.com/abilian/olapy"
readme = "README.rst"
packages = [{ include = "olapy", from = "src" }]
[tool.poetry.scripts]
olapy = 'olapy.__main__:cli'
etl = 'olapy.etl.etl:run_etl'
[tool.poetry.dependencies]
python = ">=3.8,<4"
pandas = "*"
attrs = "*"
click = "*"
lxml = "*"
pyyaml = ">=4.2b1"
regex = "*"
spyne = "^2.13"
sqlalchemy = "*"
typing = "*"
xmlwitch = "*"
# Extra (see below)
awesome-slugify = {optional = true, version = "*"}
bonobo = {optional = true, version = "*"}
bonobo-sqlalchemy = {version = "<0.6.1", optional = true}
pyspark = {version = "<3", optional = true}
python-dotenv = {optional = true, version = "*"}
whistle = {version = "<1.0.1", optional = true}
[tool.poetry.extras]
etl = ["awesome-slugify", "bonobo", "bonobo-sqlalchemy", "python-dotenv", "whistle"]
spark = ["pyspark"]
[tool.poetry.dev-dependencies]
# Tools / dev / testing
tox = "*"
pytest = "*"
pytest-cov = "*"
PrettyTable = "*"
gprof2dot = "*"
ipdb = "*"
py-cpuinfo = "*"
#databases_connectors
#pyodbc #need some packages to be installed (sudo apt-get install unixodbc-dev)
#cx_oracle
#mysql-python # don't work in py3
#pymysql
# linting
mypy = "*"
flake8 = "*"
flake8-bugbear = "*"
flake8-comprehensions = "*"
flake8-mutable = "*"
flake8-super-call = "*"
flake8-tidy-imports = "*"
mccabe = "*"
pylint = "*"
pre-commit = "*"
# Incompatible with recent versions of flake8
# flake8-pytest = "*"
# mastool = "*"
# Formatting
isort = "^5"
black = "*"
# FIXME
# xmla (for testing - Python 2 only due to dependency on suds)
# xmla = { version = "*", python = "^2.7" }
# Doc
sphinx-click = "*"
sphinx-rtd-theme = "*"
types-PyYAML = "^6.0.1"
types-six = "^1.16.3"
devtools = "^0.8.0"