aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: fb29c6364b40d3ace8d38be81934768fddd82d49 (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
34
35
36
"""setup"""

from setuptools import setup


with open('VERSION', 'r') as version_file:
    version = version_file.read().strip()

setup(name='gitsnap',
      version=version,
      description='stupid bundler for bare repos',
      long_description=" ".join("""
        simple tools for snapshotting git repos
        """.split()),
      author='Max Resnick',
      author_email='max@ofmax.li',
      url='https://git.ofmax.li/git-snapshot/',
      license="MIT",
      packages=['gitsnap'],
      install_requires=[
        'sh',
        'boto3'
      ],
      keywords='',
      entry_points='''
        [console_scripts]
        gitsnap=gitsnap.snap:run
      ''',
      classifiers=[
        'Development Status :: 3 - Alpha',
        'Natural Language :: English',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Topic :: Software Development :: Libraries',
        'Topic :: Utilities'])