2019-01-27 20:26:50 -08:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
with open("README.rst", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="packaging_scripts",
|
2019-03-25 21:57:25 -07:00
|
|
|
version="1.3",
|
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-25 21:57:25 -07:00
|
|
|
packages=["packaging_scripts"],
|
2019-03-25 14:20:59 -07:00
|
|
|
scripts=["bin/addpkg", "bin/delpkg", "bin/fqo"],
|
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",
|
|
|
|
],
|
|
|
|
)
|