-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
32 lines (30 loc) · 966 Bytes
/
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
[metadata]
name = desktop-app
description = OS menu shortcuts, correct taskbar behaviour, and environment activation for Python GUI apps
long_description = file: README.md
long_description_content_type = text/markdown
author = Chris Billington
author_email = [email protected]
url = http://github.com/chrisjbillington/desktop-app
keywords = desktop windows launchers taskbar start-menu
license = BSD
classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.6
install_requires =
setuptools_scm
importlib_metadata
distlib
pywin32; sys_platform == 'win32'
[options.entry_points]
console_scripts =
desktop-app = desktop_app.__main__:main