forked from CartoDB/raster-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
58 lines (54 loc) · 1.34 KB
/
setup.cfg
File metadata and controls
58 lines (54 loc) · 1.34 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
[metadata]
name = raster-loader
description = Python library to authenticate with CARTO
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
carto
auth
oauth
carto-dw
bigquery
author = CARTO
author_email = jarroyo@carto.com
url = https://github.com/cartodb/raster-loader
license = BSD 3-Clause
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
packages = find:
python_requires = >=3.8
setup_requires = setuptools_scm
install_requires =
click-plugins>=1.1.1
click>=8.1.3
db-dtypes>=1.0.5
google-cloud-bigquery>=3.4.0
pandas>=1.3.4
pyarrow>=10.0.1
pyproj>=3.2.1
rasterio>=1.3a3
tqdm>=4.64.1
zip_safe = False
[options.entry_points]
console_scripts =
carto = raster_loader.cli:main
raster_loader.cli =
bigquery = raster_loader.cli.bigquery:bigquery
info = raster_loader.cli.info:info
[options.extras_require]
test =
pytest>=7.1.2
pytest-mock>=3.8.2
pytest-cov>=3.0.0
[flake8]
max-line-length = 88
ignore = E203