-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
42 lines (40 loc) · 1.03 KB
/
setup.cfg
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
[metadata]
name = tiler
version = attr: tiler.__version__
description = N-dimensional NumPy array tiling and merging with overlapping, padding and tapering
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/the-lay/tiler
author = the-lay
author_email = [email protected]
license = MIT
license_file = LICENSE.md
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
Topic :: Software Development :: Libraries :: Python Modules
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3 :: Only
project_urls =
Documentation = https://the-lay.github.io/tiler/
Source = https://github.com/the-lay/tiler
Issues = https://github.com/the-lay/tiler/issues
[options]
packages =
tiler
platforms = any
python_requires = >= 3.6
install_requires =
numpy
tqdm
[options.extras_require]
test =
pytest
coverage[toml]
black
docs =
pdoc==8.0.1
all =
%(docs)s
%(test)s