-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.cfg
More file actions
61 lines (53 loc) · 1.34 KB
/
setup.cfg
File metadata and controls
61 lines (53 loc) · 1.34 KB
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
[metadata]
name = deepblu-tools
description = Deepblu Tools
author = Sander Van de Moortel
author_email = sander.vandemoortel@gmail.com
license = GPLv3
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/bluppfisk/deepblu-tools/
project_urls =
Documentation = https://github.com/bluppfisk/deepblu-tools/
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any
# Add here all kinds of additional classifiers as defined under
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
[easy_install]
[options]
zip_safe = False
packages = find_namespace:
include_package_data = True
package_dir =
=src
install_requires=
requests~=2.31
xsdata~=22.7
click~=8.1.3
[options.packages.find]
where =
src
[options.extras_require]
develop =
flake8
black
virtualenv
[options.entry_points]
console_scripts =
deepblu-backup = deepblu_tools.bin.cli:main
[bdist_wheel]
# Use this option if your package is pure-python
universal = 1
[flake8]
# Some sane defaults for the code style checker flake8
max_line_length = 88
extend_ignore = E203, W503
# ^ Black-compatible
# E203 and W503 have edge cases handled by black
exclude =
build
dist
.eggs