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