-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup.cfg
71 lines (62 loc) · 1.36 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
[metadata]
name = coindicator
description = Coinprice Indicator
author = Sander Van de Moortel
author_email = [email protected]
license = MIT
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/bluppfisk/coindicator/
project_urls =
Documentation = https://github.com/bluppfisk/coindicator/
platforms = Linux
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python
[easy_install]
[options]
zip_safe = False
packages = find_namespace:
include_package_data = True
package_dir =
=src
install_requires=
certifi>=2022.12.7
chardet~=3.0.4
idna~=2.7
desktop-notifier~=3.5.3
PyYAML>=4.2b1
requests~=2.20
urllib3~=1.26.5
pygame~=2.1.2
PyGObject~=3.44.1
[options.packages.find]
where =
src
[options.package_data]
* =
config.yaml
resources/*
[options.extras_require]
develop =
flake8
black
virtualenv
build
setuptools_scm
[options.entry_points]
console_scripts =
coindicator = coin.coin: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