-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
40 lines (37 loc) · 1.02 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="klp-build",
version="0.0.1",
author="Marcos Paulo de Souza",
author_email="[email protected]",
description="The kernel livepatching creation tool",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.suse.de/live-patching/klp-build",
packages=setuptools.find_packages(exclude=["tests"]),
package_data={"scripts": ["run-kgr-test.sh"]},
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
],
entry_points={
"console_scripts": ["klp-build=klpbuild.main:main"],
},
install_requires=[
"configparser",
"cached_property",
"GitPython",
"lxml",
"mako",
"markupsafe",
"natsort",
"osc-tiny",
"requests",
"filelock",
"pyelftools",
"zstandard"
],
)