-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (28 loc) · 787 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from __future__ import print_function
import os
import sys
from setuptools import setup, find_packages
from surveys import __version__
# Just run pytest and pass any additional args
if sys.argv[:2] == ["setup.py", "test"]:
os.system('pytest %s' % " ".join(sys.argv[2:]))
sys.exit()
setup(
name='Mezzanine Surveys',
version=__version__,
description='Survey App for Mezzanine CMS',
author='Ed Rivas',
author_email='[email protected]',
url='https://github.com/jerivas/mezzanine-surveys',
zip_safe=False,
packages=find_packages(),
include_package_data=True,
tests_require=[
'pytest-django>=3.1,<3.2',
'django-dynamic-fixture>=2.0,<2.1',
'flake8>=3.5,<3.6',
],
install_requires=[
'mezzy==2.2.0',
]
)