-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
87 lines (73 loc) · 1.74 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
85
86
87
[metadata]
name = reaxpro-wrappers
author = Netherlands eScience Center, Fraunhofer IWM
url = https://www.esciencecenter.nl/
version = v3.0.0
description = The wrapper of AMS and Zacros drivers for SimPhoNy
keywords = simphony, cuds, AMS, zacros, SCM
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
License :: OSI Approved :: BSD License
Operating System :: OS Independent
[options]
install_requires =
wheel>=0.30.0
tk==0.1.0
plams
rdflib==6.2.0
osp-core>=3.8.0
arcp>=0.2.1
minio>=7.1.15
pydantic<2.0.0
ase>=3.22.1
[options.extras_require]
develop =
pre-commit
pycodestyle
pylint
pytest
pytest-cov
pytest-mock
bumpver==2021.1114
dunamai==1.7.0
[options.packages.find]
where = .
[options.package_data]
YML_PATH =
*.ttl
*.yml
osp.dictionaries =
defaults/*.yaml
energies/*.yaml
ams/*
example_data/*
[options.entry_points]
wrappers =
wrapper = osp.wrappers.simams.simams_session:SimamsSession
[bumpver]
current_version = "v0.0.0"
version_pattern = "vMAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = True
tag = True
push = True
[bumpver:file_patterns]
setup.cfg =
version = {version}
[mypy]
ignore_missing_imports = True
files = osp, tests
allow_redefinition = True
# https://github.com/python/mypy/issues/10632#issuecomment-863332698
[mypy-yaml.*]
ignore_missing_imports = True
[coverage:run]
branch = True
source = osp
[tool:pytest]
testpaths = tests
addopts = --cov --cov-report xml --cov-report term --cov-report html
norecursedirs=tests/helpers