forked from splitgraph/sgr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
77 lines (68 loc) · 1.68 KB
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
[tool.poetry]
name = "splitgraph"
version = "0.1.4"
description = "Command line library and Python client for Splitgraph, a version control system for data"
license = "Apache 2.0 modified with Commons Clause"
authors = ["Splitgraph Limited"]
readme = "README.md"
homepage = "https://www.splitgraph.com"
repository = "https://github.com/splitgraph/splitgraph"
[tool.poetry.dependencies]
python = "~=3.6"
click = "^7"
psycopg2-binary = "^2"
parsimonious = "^0.8"
minio = ">=4"
pglast = {version = ">=1.6", markers = 'sys_platform != "win32"'}
requests = ">=2.22"
docker = ">=4.0"
click_log = "^0.3.2"
tqdm = "^4.46.0"
packaging = "^20.1"
tabulate = "^0.8.7"
asciitree = "^0.3.3"
pyyaml = ">=5.1"
# Socrata dataset mounting.
# This could be optional but it's very lightweight (only requires requests).
sodapy = ">=2.1"
# Extra requirements for Pandas ingestion
pandas = {version = ">=0.24", extras = ["ingestion"], optional = true }
sqlalchemy = { version = "^1.3", extras = ["ingestion"], optional = true }
[tool.poetry.dev-dependencies]
pytest = ">=4.4"
pyfakefs = "^4.1"
pytest-cov = "^2.10"
pytest-env = "^0.6"
coveralls = "^2.1"
pyinstaller = "^3.4"
sphinx = "^3.1"
sphinx_rtd_theme = "^0.5.0"
pylint = "^2.5"
black = { version = "*", allow-prereleases = true }
pre-commit = "^2.1"
httpretty = "^1.0.2"
mypy = ">=0.720"
bump2version = "^1.0.0"
[tool.poetry.extras]
pandas = ["pandas", "sqlalchemy"]
[tool.poetry.scripts]
sgr = "splitgraph.commandline:cli"
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry==1.0.5"]
build-backend = "poetry.masonry.api"