-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
42 lines (38 loc) · 1.21 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
[metadata]
name = mkarchive
version = attr: archiver.VERSION
author = Javier Llopis
author_email = javier@llopis.me
description = Create Linux self-executables & installers based on 'dialog'
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/destrangis/mkarchive
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Intended Audience :: System Administrators
Operating System :: POSIX
Topic :: System :: Archiving :: Packaging
Topic :: System :: Software Distribution
Topic :: System :: Installation/Setup
Topic :: Utilities
[options]
install_requires =
PyYAML
importlib_resources; python_version < "3.9.0"
include_package_data = True
packages = archiver, installer
[options.data_files]
archiver =
archiver/selfextract0.c
archiver/setup.sh
[options.entry_points]
console_scripts =
mkarchive = archiver.mkarchive:main
smartsetup = installer.smartsetup:main