@@ -45,7 +45,7 @@ test-all:
tox
coverage-run:
- py.test -vv --cov=blogit2.py tests
+ py.test -vv --cov=blogit tests
#coverage report -m
#@coverage html
@@ -6,8 +6,9 @@ from setuptools import find_packages
setup(name='blogit2',
version='0.0.1',
license="GNU GPL",
+ packages=find_packages(exclude=['tests']),
entry_points={
- 'console_scripts': ['blogit2 = blogit2:main']
+ 'console_scripts': ['blogit2 = blogit.blogit2:main']
}
)