-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
46 lines (42 loc) · 1.07 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
43
44
45
46
[metadata]
name = drd
version = 0.1.2
author = The Digital Rocks Data Authors
author_email = lukas.mosser@gmail.com
description = Make downloading digital rocks great again
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/lukasmosser/digital_rocks_data
classifiers =
Intended Audience :: Science/Research
Development Status :: 4 - Beta
Natural Language :: English
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
[options]
packages =
drd
drd.datasets
python_requires = >=3.7
install_requires =
numpy
xarray
requests
tqdm
py7zr
[options.extras_require]
docs = sphinx
test = pytest
dev = build; pytest; sphinx
[tool:pytest]
addopts = --verbose
python_files = tests/*.py
[flake8]
ignore = E203, E501, W503, E402
per-file-ignores =
__init__.py: F401, F403, F405
max-line-length = 88