-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (55 loc) · 1.33 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
# pyproject docs: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
# Disable autodiscovery of package folders, only use dbtools dir
[tools.setuptools]
py_modules = ['databridge_etl_tools']
[project]
name = "databridge-etl-tools"
version = "1.3.10"
description = "Command line tools to extract and load SQL data to various endpoints"
authors = [
{name = "citygeo", email = "[email protected]"},
]
requires-python = ">=3.7,<3.10"
readme = "README.md"
license = {text = "MIT"}
dependencies = [
"geopetl @ git+https://github.com/CityOfPhiladelphia/geopetl.git@master",
"setuptools>=67.6.0",
"arcgis",
"boto3>=1.21.15",
"botocore",
"certifi",
"chardet",
"click",
"docutils",
"future",
"idna",
"jmespath",
"mock",
"petl",
"pyrestcli",
"python-dateutil",
"pyproj",
"requests",
"s3transfer",
"six",
"numpy<=1.22.0",
"Shapely==1.8.1.post1",
"cx_Oracle>=8.3.0",
"psycopg2-binary==2.9.3",
"six",
"carto",
"moto",
"pytest",
"requests-mock",
"stringcase",
"hurry.filesize",
"smart_open",
"retrying"
]
# installs our command as a cli runnable script
[project.scripts]
databridge_etl_tools = "databridge_etl_tools.cli:main"