-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 850 Bytes
/
setup.py
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
"""
Setup.py for gtlb
"""
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='gtlb',
version='0.0.3',
description='',
long_description='A CLI to open Gitlab project in a browser',
url='https://github.com/danielwhatmuff/gtlb',
author='Daniel Whatmuff',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
],
keywords='git gtlb gitlab cli open repo commandline browser',
py_modules=["gtlb"],
install_requires=['gitpython'],
scripts=['bin/gtlb'],
)