-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
51 lines (46 loc) · 1.34 KB
/
setup.cfg
File metadata and controls
51 lines (46 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
[metadata]
name = tray-launcher
version = attr: tray_launcher.__version__
author = Huaxu Dan
author_email = danhuaxutommy@gmail.com
license_file = LICENSE
description = A launcher for Windows that resides in the taskbar for managing .bat scripts.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Jayich-Lab/tray-launcher/
project_urls =
Source Code = https://github.com/Jayich-Lab/tray-launcher/
Bug Tracker = https://github.com/Jayich-Lab/tray-launcher/issues/
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3 :: Only
Topic :: System :: Logging
Topic :: System :: Monitoring
Topic :: Utilities
[options]
# https://devguide.python.org/#status-of-python-branches
python_requires = ~=3.7
install_requires =
PyQt5
pywin32
psutil
packages = find:
package_dir =
= src
[options.packages.find]
where = src
[options.package_data]
tray_launcher = icons/*
[options.entry_points]
console_scripts =
launcher = tray_launcher.launcher_parser:main
[flake8]
select = BLK,I,W,E,F,C,B
max-line-length = 100
extend-ignore = E203, W503
max-complexity = 10