-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
84 lines (78 loc) · 1.8 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[metadata]
name = aerovaldb
version = 0.1.6.dev0
author = Augustin Mortier, Thorbjørn Lundin, Heiko Klein
author_email = [email protected]
description = aeroval database to communicate between pyaerocom and aeroval
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Intended Audience :: Education
Topic :: Scientific/Engineering :: Atmospheric Science
url = https://github.com/metno/aerovaldb
[options]
python_version = >=3.10
install_requires =
importlib-metadata >= 3.6; python_version < "3.10"
simplejson
aiofile
async_lru
packaging
filetype
package_dir =
=src
packages =
find:
tests_require =
tox:tox
pytest
mutmut
[options.packages.find]
where=src
[options.entry_points]
aerovaldb =
json_files = aerovaldb.jsondb:AerovalJsonFileDB
sqlitedb = aerovaldb.sqlitedb:AerovalSqliteDB
console_scripts =
aerovaldbcp = aerovaldb.utils.copy:main
[tox:tox]
labels =
test = py310, py311, py312
lint = mpy
min_version = 4.0
env_list =
mpy
py310
py311
py312
skip_missing_interpreters = True
isolated_build = True
requires =
depends =
[testenv]
commands_pre =
python --version
deps =
pytest
pytest_asyncio
commands =
python -m pytest --doctest-modules .
[mpy]
commands_pre =
python --version
deps =
mypy
commands =
python -m mypy src/
[mutmut]
paths_to_mutate=src/
tests_dir=tests/