Test config clean up

This commit is contained in:
Paulus Schoutsen 2015-12-27 16:15:39 -08:00
parent 244fde880e
commit 4403fe941d
3 changed files with 7 additions and 2 deletions

1
.gitignore vendored
View File

@ -41,6 +41,7 @@ Icon
dist
build
eggs
.eggs
parts
bin
var

View File

@ -1,2 +1,5 @@
[wheel]
universal = 1
[pytest]
testpaths = tests

View File

@ -16,7 +16,7 @@ REQUIRES = [
'pytz>=2015.4',
'pip>=7.0.0',
'vincenty==0.1.3',
'jinja2>=2.8'
'jinja2>=2.8',
]
setup(
@ -33,6 +33,7 @@ setup(
zip_safe=False,
platforms='any',
install_requires=REQUIRES,
test_suite='tests',
keywords=['home', 'automation'],
entry_points={
'console_scripts': [
@ -46,5 +47,5 @@ setup(
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Topic :: Home Automation'
]
],
)