forked from citation-file-format/cffconvert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
96 lines (87 loc) · 2.65 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
# see documentation, e.g.
# - https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata
# - https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
# - https://www.python.org/dev/peps/pep-0314/
[metadata]
author = Jurriaan H. Spaaks
author_email = [email protected]
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Information Technology
Intended Audience :: Science/Research
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
Topic :: Software Development
Topic :: Utilities
description = Command line program to validate and convert CITATION.cff files.
keywords =
citation
credit
CITATION.cff
BibTeX
EndNote
RIS
CodeMeta
Zenodo
long_description = file: README.md
long_description_content_type = text/markdown
name = cffconvert
project_urls =
Bug Tracker = https://github.com/citation-file-format/cff-converter-python/issues
Source = https://github.com/citation-file-format/cff-converter-python
url = https://github.com/citation-file-format/cff-converter-python
version = 2.0.0
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
# https://www.python.org/dev/peps/pep-0440/#version-specifiers
click >=7.0, <9
requests >=2.20, <3
ruamel.yaml >=0.16.0
pykwalify >=1.6
jsonschema >=3.0, <4
[options.data_files]
# This section requires setuptools>=40.6.0
# See MANIFEST.in for the included files
[options.entry_points]
console_scripts =
cffconvert = cffconvert.cli.cli:cli
[options.extras_require]
dev =
prospector[with_pyroma] >= 1.4
isort
pytest >=6
pytest-cov
publishing =
twine
wheel
gcloud =
flask
[options.packages.find]
include = cffconvert, cffconvert.*
[coverage:run]
branch = True
source = cffconvert
omit = test/* livetest/*
[isort]
lines_after_imports = 2
force_single_line = 1
no_lines_before = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
known_first_party = cffconvert
src_paths = cffconvert,test,livetest
line_length = 120
[tool:pytest]
# Note that visual debugger in some editors like pycharm gets confused by coverage calculation.
# As a workaround, configure the test configuration in pycharm et al with a --no-cov argument
addopts = --no-cov --verbose