Eric Torres 8c8a2283e3 Revert "Move from legacy setuptools to pyproject toml"
This reverts commit 4def2a350e36b4e9cc5e813e447c40523e5fb091.
2024-05-09 19:40:48 -07:00

32 lines
902 B
Python

import setuptools
# ========== Constants ==========
EXCLUDED_PACKAGES = ["test", "tests"]
PACKAGES = setuptools.find_packages(exclude=EXCLUDED_PACKAGES)
SCRIPTS = ["bin/addpkg", "bin/delpkg", "bin/fqo", "bin/pug2"]
# ========== Functions ==========
with open("README.rst", "r") as fh:
long_description = fh.read()
# ========== Package Setup ==========
setuptools.setup(
name="packaging_scripts",
version="1.7.1",
author="Eric Russel Torres",
author_email="erictorres4@protonmail.com",
description="A set of scripts for automating pacman database interaction",
long_description=long_description,
long_description_content_type="text/plain",
url="",
packages=PACKAGES,
scripts=SCRIPTS,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)