-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·48 lines (44 loc) · 1.4 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
43
44
45
46
47
48
#!/usr/bin/env python
from setuptools import setup
# note: this is a repeat of the README, to evolve, good enough for now.
long_desc = """
Contributors welcome, either adding new functionality or fixing bugs.
See also: https://msdn.microsoft.com/en-us/library/bb417343.aspx
"""
setup(
name="cabarchive",
version="0.2.4",
license="LGPL-2.1-or-later",
description="A pure-python library for creating and extracting cab files",
long_description=long_desc,
author="Richard Hughes",
author_email="[email protected]",
url="https://github.com/hughsie/python-cabarchive",
packages=[
"cabarchive",
],
include_package_data=True,
zip_safe=False,
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Programming Language :: Python",
"Topic :: Utilities",
"Topic :: System :: Archiving",
],
keywords=["cabextract", "cab", "archive", "extract"],
package_data={
"cabarchive": [
"py.typed",
"archive.pyi",
"errors.pyi",
"file.pyi",
"parser.pyi",
"utils.pyi",
"writer.pyi",
"__init__.pyi",
]
},
)