Cleanup formatting

This commit is contained in:
Eric Torres 2019-03-31 11:22:53 -07:00
parent c713cc25d7
commit 123eed83b5

View File

@ -1,8 +1,14 @@
import setuptools
# ========== Constants ==========
PACKAGES = ["rbackup"]
SCRIPTS = ["bin/backup"]
# ========== Functions ==========
with open("README.rst", "r") as fh:
long_description = fh.read()
# ========== Package Setup ==========
setuptools.setup(
name="rbackup",
version="0.1",
@ -13,7 +19,7 @@ setuptools.setup(
long_description_content_type="text/plain",
url="",
packages=PACKAGES,
scripts=["bin/backup"],
scripts=SCRIPTS,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",