-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
69 lines (62 loc) · 1.4 KB
/
Copy pathsetup.cfg
File metadata and controls
69 lines (62 loc) · 1.4 KB
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
[metadata]
name = ppf-jabref
description = Python tools to work with JabRef libraries
long_description = file: docs/README_pypi.md
long_description_content_type = text/markdown
url = https://github.com/adrianschlatter/ppf.jabref/tree/master
author = Adrian Schlatter
license = MIT
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
Intended Audience :: Science/Research
Topic :: Utilities
Programming Language :: Python :: 3
Operating System :: OS Independent
keywords = jabref, python, sqlalchemy
[options]
package_dir =
= src
packages = find_namespace:
# no python3.5 because we need f-strings:
python_requires = >=3.6
install_requires = sqlalchemy
[options.packages.find]
where = src
[options.extras_require]
# List additional groups of dependencies here. You can install these using
# pip install -e .[dev,test]
test =
check-manifest
setuptools>=40.5.0
flake8
pytest
pytest-cov
importlib_metadata;python_version<='3.8'
dev =
tox
twine
[tool:pytest]
testpaths =
tests
docs
addopts =
--cov=ppf.jabref
--cov-report=
--cov-fail-under=100
--doctest-glob=*.md
[flake8]
per-file-ignores =
# imported but unused, import *, undefined name:
__init__.py: F401, F403, F821
filename =
*/src/*.py
*/docs/*.py
*/tests/*.py
setup.py
[check-manifest]
ignore =
tox.ini
tests
tests/**
docs/**