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 dist
build build
eggs eggs
.eggs
parts parts
bin bin
var var

View File

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

View File

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