summaryrefslogtreecommitdiff
path: root/.gitlab/rel_eng/fetch-gitlab-artifacts/setup.py
blob: 7a0bd1a53ee06f40ed27ce054de5fac3ee420d66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python

from distutils.core import setup

setup(name='fetch-gitlab',
      author='Ben Gamari',
      author_email='ben@smart-cactus.org',
      py_modules=['fetch_gitlab'],
      entry_points={
          'console_scripts': [
              'fetch-gitlab=fetch_gitlab:main',
          ]
      }
     )