-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
37 lines (33 loc) · 742 Bytes
/
setup.cfg
File metadata and controls
37 lines (33 loc) · 742 Bytes
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
[metadata]
name = PyQmm
version = attr: qmm.version.VERSION_STRING
url = https://github.com/bicobus/qModManager/
author = bicobus
author_email = [email protected]
description = A simple Qt based mod manager.
long_description = file: README.rst
license = EUPLv1.2
project_urls =
source = https://github.com/bicobus/qModManager/
documentation = https://qmodmanager.readthedocs.io/
[options]
python_requires = >=3.8
packages = find:
include_package_data = true
zip_safe = false
install_requires =
appdirs
attrs
pyqt5
send2trash
watchdog
[options.entry_points]
console_script =
pyqmm = qmm.__main__:main
[options.packages.find]
exclude =
tests
[options.extras_require]
tests =
pytest
pytest-cov