Add failing test for versioned repositories.

This commit is contained in:
Anthony Sottile 2014-06-01 21:09:02 -07:00
parent 3baae2fd1e
commit fdd6989ece
6 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,11 @@
from setuptools import find_packages
from setuptools import setup
setup(
name='python3_hook',
version='0.0.0',
packages=find_packages('.'),
entry_points={
'console_scripts': ['python3-hook = python3_hook.main:func'],
},
)