-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
115 lines (103 loc) · 2.21 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[metadata]
name = collabutils
version = 0.2.1.dev0
author = Robert Forkel
author_email = [email protected]
description = Utilities for collaborative data curation
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache 2.0
license_files = LICENSE
url = https://github.com/dlce-eva/collabutils
project_urls =
Bug Tracker = https://github.com/dlce-eva/collabutils/issues
platforms = any
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
License :: OSI Approved :: Apache Software License
[options]
zip_safe = False
packages = find:
package_dir =
= src
python_requires = >=3.7
install_requires =
attrs>=19.3
clldutils>=3.5
csvw
pycldf
include_package_data = True
[options.packages.find]
where = src
[options.extras_require]
googlesheets =
gspread==3.7
owncloud =
pyocclient
openpyxl
zotero =
pyzotero
pybtex
docs =
sphinx
sphinx-autodoc-typehints
sphinx-rtd-theme
gspread==3.7
pyocclient
openpyxl
pyzotero
pybtex
dev =
build
tox
flake8
wheel>=0.36
twine
test =
pytest>=4.3
pytest-mock
pytest-cov
coverage>=4.2
gspread==3.7
pyocclient
openpyxl
pybtex
pyzotero
[easy_install]
zip_ok = false
[bdist_wheel]
universal = 1
[flake8]
ignore = E711,E712,D100,D101,D103,D102,D301,F405
max-line-length = 100
exclude = .tox
[tool:pytest]
minversion = 4.3
testpaths = tests
addopts = --cov
[coverage:run]
source =
collabutils
tests
[coverage:report]
show_missing = true
skip_covered = true
[tox:tox]
envlist = py37, py38, py39, py310, py311
isolated_build = true
skip_missing_interpreter = true
[testenv]
deps = .[test]
commands = pytest {posargs}