forked from unfoldingWord-dev/d43-catalog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest-setup.py
31 lines (30 loc) · 852 Bytes
/
test-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
from setuptools import setup
setup(
name="d43-catalog",
version="0.0.1",
author="unfoldingWord",
author_email="unfoldingword.org",
description="Unit test setup file.",
license="MIT",
keywords="",
url="https://github.org/unfoldingWord-dev/d43-catalog",
long_description='Unit test setup file',
classifiers=[],
install_requires=[
'arrow==0.10.0',
'mutagen==1.38',
'coveralls==1.1',
'markdown==2.6.8',
'pyyaml==3.12',
'gogs_client==1.0.6',
'usfm-tools==0.0.13',
'd43_aws_tools==1.0.4',
'boto3==1.4.4',
'python-dateutil==2.6.0',
'pytz==2017.2',
'grequests==0.3.0',
'resource_container==1.1',
'mock' # travis reports syntax error in mock setup.cfg if we give version
],
test_suite='tests'
)