-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 791 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 791 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
from setuptools import setup, find_packages
setup(
name="autopatch",
version="1.1.3",
description="Tool for autopatching source content for debranding/modification",
author="AlmaLinux",
author_email="info@almalinux.org",
url="https://github.com/almalinux/autopatch-tool",
packages=["autopatch", "autopatch.tools"],
package_dir={
"autopatch": "src",
"autopatch.tools": "src/tools",
},
entry_points={
"console_scripts": [
"autopatch=autopatch_standalone:main",
"autopatch_package_patching=package_patching:main",
"autopatch_validate_config=validate_config:main",
],
},
py_modules=["autopatch_standalone", "package_patching", "validate_config"],
python_requires=">=3.6",
)