rbackup/setup.py

29 lines
789 B
Python
Raw Normal View History

2019-02-07 23:19:21 -08:00
import setuptools
2019-03-31 11:22:53 -07:00
# ========== Constants ==========
2019-04-10 19:28:53 -07:00
PACKAGES = ["rbackup", "rbackup.package_managers", "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",
version="0.1",
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="",
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",
],
)