-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 972 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="paur",
version="0.0.1a",
author="Tony Benoy",
setup_requires=["wheel"],
python_requires=">=3.7",
author_email="[email protected]",
description="A python wrapper pacman with the ability to interact with Arch User Repository",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tonybenoy/paur",
install_requires=["typer", "shellingham", "aurlib", "aorlib", "aiosqlite", "rich"],
keywords="Arch Linux AUR Arch User Repository pacman",
packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Development Status :: 2 - Pre-Alpha",
),
extras_require={"dev": ["black", "pylint", "isort", "mypy",]},
)