-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.04 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
[tool.poetry]
name = "shadowtool"
version = "0.0.0"
description = "A personal Python development library."
authors = ["Shadowsong27 <[email protected]>"]
packages = [
{ include = "shadowtool" },
]
[tool.poetry.dependencies]
python = "^3.7"
click = "7.1.2"
psycopg2-binary = "^2.8.5"
boto3 = "1.17.93"
records = "^0.5.3"
jinja2 = "2.11.3"
bs4 = "^0.0.1"
requests = "2.23.0"
configobj = "^5.0.6"
awscli = "1.19.93"
pytest = "^6.1.1"
cached-property = "^1.5.2"
sqlalchemy = "1.3.24"
geopandas = {version = "^0.8.1", optional = true}
pyarrow = {version = "^3.0.0", optional = true}
python-snappy = {version = "^0.5.4", optional = true}
pandas = {version = "1.1.5", optional = true}
pydantic = "^1.9.0"
pyspark = "^3.2.1"
Pillow = "8.4"
[tool.poetry.dev-dependencies]
bumpversion = "^0.6.0"
pre-commit = "2.3.0"
[tool.poetry.extras]
geo = ["geopandas"]
pandas = ["pandas"]
parquet = ["pyarrow", "python-snappy"]
[tool.poetry.scripts]
shadowtool = "shadowtool.bin.manage:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"