Since Pillar is not pip-installable and also not properly versioned either, I removed the 'pillar>=2.0' requirement from setup.py
20 lines
385 B
Python
20 lines
385 B
Python
#!/usr/bin/env python
|
|
|
|
"""Setup file for the Attract extension."""
|
|
|
|
import setuptools
|
|
|
|
setuptools.setup(
|
|
name='attract',
|
|
version='1.0',
|
|
packages=setuptools.find_packages('.', exclude=['test']),
|
|
install_requires=[],
|
|
tests_require=[
|
|
'pytest>=2.9.1',
|
|
'responses>=0.5.1',
|
|
'pytest-cov>=2.2.1',
|
|
'mock>=2.0.0',
|
|
],
|
|
zip_safe=False,
|
|
)
|