-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.08 KB
/
setup.py
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
"""Application packaging for Debian-based distributions."""
NAME = 'kt.appackager'
VERSION = '0.7.0'
LICENSE = 'file: LICENSE.rst'
metadata = dict(
name=NAME,
version=VERSION,
license=LICENSE,
author='Keeper Technology, LLC',
author_email='[email protected]',
url='http://kt-git.keepertech.com/DevTools/kt.appackager',
description=__doc__,
packages=['kt.appackager'],
package_dir={'': 'src'},
include_package_data=True,
install_requires=[
'tomli',
'wheel',
],
entry_points={
'console_scripts': [
'appackage = kt.appackager.build:main',
],
},
classifiers=[
'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',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)
if __name__ == '__main__':
import setuptools
setuptools.setup(**metadata)