aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 8a1e5b19cda9392ba8c0ea84cfa674aca890d167 (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=['giti'],
    license='MIT',
    author='Victor Häggqvist',
    author_email='[email protected]',
    description='A python command line tool fetching getting .gitignore files'
)