2016-07-29 16:48:43 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""Setup file for the Attract extension."""
|
|
|
|
|
|
|
|
import setuptools
|
|
|
|
|
|
|
|
setuptools.setup(
|
2016-09-07 10:50:44 +02:00
|
|
|
name='attract',
|
2016-07-29 16:48:43 +02:00
|
|
|
version='1.0',
|
|
|
|
packages=setuptools.find_packages('.', exclude=['test']),
|
2017-03-03 15:04:50 +01:00
|
|
|
install_requires=[],
|
2016-07-29 16:48:43 +02:00
|
|
|
tests_require=[
|
|
|
|
'pytest>=2.9.1',
|
|
|
|
'responses>=0.5.1',
|
|
|
|
'pytest-cov>=2.2.1',
|
|
|
|
'mock>=2.0.0',
|
|
|
|
],
|
|
|
|
zip_safe=False,
|
|
|
|
)
|