]> git.scottworley.com Git - git-cache/blob - setup.py
8f5d1b29d004c7ee56dcd31d38ec8c3e004d6bd8
[git-cache] / setup.py
1 from setuptools import setup
2
3 setup(
4 name="git_cache",
5 version="0.0.1-pre",
6 entry_points={'console_scripts': ['git-cache = git_cache:_main']},
7 py_modules=['git_cache'],
8 )