mirror of
https://github.com/isjerryxiao/pacroller.git
synced 2024-11-13 03:42:24 +08:00
31 lines
924 B
Python
31 lines
924 B
Python
|
import setuptools
|
||
|
|
||
|
with open("README.md", "r", encoding="utf-8") as fh:
|
||
|
long_description = fh.read()
|
||
|
|
||
|
setuptools.setup(
|
||
|
name="pacroller",
|
||
|
version="0.0.1",
|
||
|
author="Jerry Xiao",
|
||
|
author_email="pacroller@mail.jerryxiao.cc",
|
||
|
description="unattended pacman upgrade for archlinux",
|
||
|
long_description=long_description,
|
||
|
long_description_content_type="text/markdown",
|
||
|
url="https://github.com/isjerryxiao/pacroller",
|
||
|
packages=setuptools.find_packages('src'),
|
||
|
package_dir={'': 'src'},
|
||
|
classifiers=[
|
||
|
"Development Status :: 3 - Alpha"
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||
|
"Operating System :: POSIX :: Linux",
|
||
|
],
|
||
|
python_requires='>=3.8',
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'pacroller=pacroller.main:main'
|
||
|
]
|
||
|
},
|
||
|
install_requires=['pyalpm']
|
||
|
)
|