aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: a2844050d780c673511bddc540489c27c0f93c39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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'])