-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
53 lines (44 loc) · 912 Bytes
/
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
47
48
49
50
51
52
53
[metadata]
name = eclx
description = Tools for extracting information from Eclipse run decks and results.
long_description = file:README.md
long_description_content_type = text/markdown
authors = Tony Hallam
author_email = [email protected]
url = https://github.com/trhallam/eclx
license = MIT
licence_files = LICENSE
readme = README.md
[options]
packages = find:
package_dir =
=src
include_package_data = True
python_requires = >=3.8
install_requires =
ecl > 2.10
click >= 8.0
tqdm
numpy
pandas
more_itertools
loguru
dataicer >= 0.2
lark
tables
[options.packages.find]
where = src
include = eclx
[options.package_data]
* = *.lark
[options.extras_require]
test =
pytest
pytest-cov
pandas
numpy
xarray
docs = jupytext
[options.entry_points]
console_scripts =
eclx = eclx.cli:main