This repository was archived by the owner on Jul 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
79 lines (69 loc) · 2.05 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
# Heavily based on the setup.cfg for pandas, permitted under its BSD-3-Clause license, which is
# shared by Joinplex:
# https://github.com/pandas-dev/pandas
[metadata]
name = joinplex
description = Advanced, multi-stage tabular joins
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/joinplex-dev/joinplex
author = The Joinplex Development Team
author_email = [email protected]
license = BSD-3-Clause
license_files = LICENSE
platforms = any
classifiers = # https://pypi.org/classifiers/
Development Status :: 1 - Planning
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
project_urls =
Bug Tracker = https://github.com/joinplex-dev/joinplex/issues
# Documentation = TODO
Source Code = https://github.com/joinplex-dev/joinplex
[options]
packages = find:
install_requires =
pandas>=1.0.0
python_requires = >=3.8
include_package_data = True
zip_safe = False
[options.extras_require]
test =
hypothesis>=5.5.3
pytest>=6.0
pytest-xdist>=1.31
[build_ext]
inplace = True
[options.packages.find]
include = joinplex
[codespell]
# ignore-words-list =
ignore-regex = https://([\w/\.])+
[coverage:run]
branch = True
source = joinplex
[coverage:report]
ignore_errors = False
show_missing = True
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
AbstractMethodError
# Don't complain if non-runnable code isn't run:
if __name__ == .__main__.:
if TYPE_CHECKING:
[coverage:html]
directory = coverage_html_report