-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
95 lines (85 loc) · 1.92 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
88
89
90
91
92
93
94
95
[metadata]
name = ppf.webref
description = Flask app providing a web-interface to a JabRef database
long_description = file: docs/README_pypi.md
long_description_content_type = text/markdown
url = https://github.com/adrianschlatter/ppf.webref/tree/master
project_urls =
Bug Reports = https://github.com/adrianschlatter/ppf.webref/issues
Source = https://github.com/adrianschlatter/ppf.webref
author = Adrian Schlatter
license = MIT
license_files = LICENSE
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Operating System :: OS Independent
keywords = jabref, references, web, server, app
[options]
package_dir =
= src
packages = find_namespace:
include_package_data = True
# need f-strings:
python_requires = >=3.6, <4
install_requires =
flask
flask-sqlalchemy
flask_talisman
flask_login
flask_wtf
flask_bcrypt
pymysql
ppf.jabref
plumbum
importlib_metadata;python_version<'3.8'
[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
coverage
dev =
build
tox
twine
[tool:pytest]
testpaths =
tests
addopts = --cov
[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/**
[coverage:run]
command_line = -m pytest
branch = True
[coverage:report]
include = src/*
omit =
tests/*
setup.py
exclude_also:
if not test:
if __name__ == '__main__':