diff options
| author | Max Resnick <max@ofmax.li> | 2020-01-18 12:15:27 -0800 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2020-01-18 12:15:27 -0800 |
| commit | 1b8767584a41f3163293f890abc901c23e78dce2 (patch) | |
| tree | 06de6a43d2b856c7d2cf062e136f57bbd4ddf953 /setup.py | |
| parent | ddf94e407ca1debfaf06cd7314a7922e31d029a8 (diff) | |
| download | git-snapshot-1b8767584a41f3163293f890abc901c23e78dce2.tar.gz | |
initial pass at snapshotter
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a284405 --- /dev/null +++ b/setup.py @@ -0,0 +1,33 @@ +"""setup""" + +from setuptools import setup + + +with open('VERSION', 'r') as version_file: + version = version_file.read().strip() + +setup(name='gitsnap', + version=version, + description='distributed observability of systemd', + long_description=" ".join(""" + simple tools for snapshotting git repos + """.split()), + author='Max Resnick', + author_email='max@ofmax.li', + url='http://git.ofmax.li/gitsnap.git/', + license="MIT", + py_modules=['gitsnap'], + packages=[], + install_requires=[ + 'sh', + 'boto3' + ], + keywords='', + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Natural Language :: English', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Software Development :: Libraries', + 'Topic :: Utilities']) + |