-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
54 lines (49 loc) · 1.39 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
[metadata]
name = filefisher
author = Mathias Hauser
author_email = [email protected]
license = MIT
description = find and parse file and folder names
long_description_content_type=text/markdown
long_description = file: README.md
url = https://github.com/mpytools/filefisher
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
[options]
packages = find:
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
python_requires = >=3.10
install_requires =
numpy >=1.24
pandas >=2.0
parse >=1.19
[options.extras_require]
docs =
ipython
numpydoc
sphinx
sphinx-book-theme
myst-parser
[flake8]
ignore=
# E203: whitespace before ':' - doesn't work well with black
# E402: module level import not at top of file
# E501: line too long - let black worry about that
# E731: do not assign a lambda expression, use a def
# W503: line break before binary operator
E203, E402, E501, E731, W503
[isort]
profile = black
skip_gitignore = true
[coverage:run]
omit =
*/tests/*,