Skeleton structure of a Pillar extension.
This commit is contained in:
21
setup.py
Normal file
21
setup.py
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
"""Setup file for the Attract extension."""
|
||||
|
||||
import setuptools
|
||||
|
||||
setuptools.setup(
|
||||
name='attract-server',
|
||||
version='1.0',
|
||||
packages=setuptools.find_packages('.', exclude=['test']),
|
||||
install_requires=[
|
||||
'pillar-server>=2.0',
|
||||
],
|
||||
tests_require=[
|
||||
'pytest>=2.9.1',
|
||||
'responses>=0.5.1',
|
||||
'pytest-cov>=2.2.1',
|
||||
'mock>=2.0.0',
|
||||
],
|
||||
zip_safe=False,
|
||||
)
|
Reference in New Issue
Block a user