aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 80c26c140d01cc08877d7a8dd4ae4a5820ee866b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from setuptools import setup

setup(
    name='giti',
    version='0.2.0',
    packages=[],
    url='https://github.com/victorhaggqvist/giti',
    scripts=['bin/giti'],
    license='MIT',
    author='Victor Häggqvist',
    author_email='[email protected]',
    description='A python command line tool fetching getting .gitignore files'
)