2019-02-07 23:19:21 -08:00
|
|
|
import setuptools
|
|
|
|
|
2019-03-31 11:22:53 -07:00
|
|
|
# ========== Constants ==========
|
2019-04-15 23:32:57 -07:00
|
|
|
PACKAGES = ["rbackup", "rbackup.plugins", "rbackup.struct"]
|
2019-03-31 11:22:53 -07:00
|
|
|
SCRIPTS = ["bin/backup"]
|
|
|
|
|
|
|
|
# ========== Functions ==========
|
2019-04-10 19:25:09 -07:00
|
|
|
with open("README", "r") as fh:
|
2019-02-07 23:19:21 -08:00
|
|
|
long_description = fh.read()
|
|
|
|
|
2019-03-31 11:22:53 -07:00
|
|
|
# ========== Package Setup ==========
|
2019-02-07 23:19:21 -08:00
|
|
|
setuptools.setup(
|
|
|
|
name="rbackup",
|
2019-04-17 20:22:51 -07:00
|
|
|
version="0.5.2",
|
2019-02-07 23:19:21 -08:00
|
|
|
author="Eric Torres",
|
|
|
|
author_email="erictorres4@protonmail.com",
|
|
|
|
description="An rsync-based tool for creating backups",
|
|
|
|
long_description=long_description,
|
2019-03-17 18:27:03 -07:00
|
|
|
long_description_content_type="text/plain",
|
2019-02-07 23:19:21 -08:00
|
|
|
url="",
|
2019-03-31 11:21:00 -07:00
|
|
|
packages=PACKAGES,
|
2019-03-31 11:22:53 -07:00
|
|
|
scripts=SCRIPTS,
|
2019-02-07 23:19:21 -08:00
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
|
|
|
)
|