2019-01-27 20:26:50 -08:00
|
|
|
import setuptools
|
|
|
|
|
2019-03-30 13:16:37 -07:00
|
|
|
# ========== Constants ==========
|
|
|
|
PACKAGES = ["packaging_scripts"]
|
|
|
|
SCRIPTS = ["bin/addpkg", "bin/delpkg", "bin/fqo"]
|
|
|
|
|
|
|
|
|
|
|
|
# ========== Functions ==========
|
2019-01-27 20:26:50 -08:00
|
|
|
with open("README.rst", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="packaging_scripts",
|
2019-03-27 17:26:34 -07:00
|
|
|
version="1.3.1",
|
2019-01-27 20:26:50 -08:00
|
|
|
author="Eric Russel Torres",
|
|
|
|
author_email="erictorres4@protonmail.com",
|
|
|
|
description="A set of helpers for automating borg interaction",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/plain",
|
|
|
|
url="",
|
2019-03-30 13:16:37 -07:00
|
|
|
packages=PACKAGES,
|
|
|
|
scripts=SCRIPTS,
|
2019-01-27 20:26:50 -08:00
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
2019-03-10 20:30:04 -07:00
|
|
|
"License :: OSI Approved :: MIT License",
|
2019-01-27 20:26:50 -08:00
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
|
|
|
)
|