-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (27 loc) · 893 Bytes
/
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
from setuptools import setup, find_packages
from checkarchupdates import __version__ as version, __name__
# META DATA
__author__ = "sTiKyt"
__version__ = version
__package_name__ = __name__
__description__ = "Python port of checkupdates from Arch Linux pacman-contrib"
__python_requires__ = ">=3.6.*"
__url__ = "https://github.com/sTiKyt/checkarchupdates"
with open("README.md", "r") as readme:
__long_description__ = readme.read()
setup(
name=__package_name__,
version=__version__,
author=__author__,
description=__description__,
python_requires=__python_requires__,
url=__url__,
long_description=__long_description__,
long_description_content_type="text/markdown",
packages=find_packages(exclude=("tests",)),
entry_points={
"console_scripts": [
'checkarchupdates = checkarchupdates.checkarchupdates:main'
]
}
)