23 lines
669 B
Python
Raw Normal View History

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",
version="1.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="",
packages=setuptools.find_packages(),
2019-01-28 21:15:41 -08: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",
],
)