Cleanup formatting
This commit is contained in:
parent
c713cc25d7
commit
123eed83b5
8
setup.py
8
setup.py
@ -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",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user