-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
40 lines (37 loc) · 1.13 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
[options]
packages = steam_acolyte
python_requires = >=3.5
install_requires =
pyqt5
vdf
docopt
importlib_resources; python_version < '3.7'
include_package_data = true
zip_safe = true
[options.entry_points]
console_scripts =
steam-acolyte = steam_acolyte.app:main
[metadata]
name = steam-acolyte
description = Lightweight user account switcher/login keeper for steam
url = https://github.com/coldfix/steam-acolyte
long_description = file: README.rst, CHANGES.rst
author = Thomas Gläßle
author_email = [email protected]
license = Unlicense
license_file = UNLICENSE
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Environment :: X11 Applications :: Qt
Intended Audience :: End Users/Desktop
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3
License :: Public Domain
Topic :: Games/Entertainment
long_description_content_type = text/x-rst
[flake8]
ignore = E221,E241,E251,E402,W504
exclude = docs,.git,build,__pycache__,dist,.eggs
max-line-length = 80