This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtest-setup.py
81 lines (80 loc) · 2.51 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
from setuptools import setup
setup(
name='tx-manager',
version='0.3.0',
package_dir={
'client_converter_callback': 'functions/client_converter_callback',
'client_linter_callback': 'functions/client_linter_callback',
'client_webhook': 'functions/client_webhook',
'convert_md2html': 'functions/convert_md2html',
'convert_usfm2html': 'functions/convert_usfm2html',
'door43_deploy': 'functions/door43_deploy',
'list_endpoints': 'functions/list_endpoints',
'register_module': 'functions/register_module',
'client': 'libraries/client',
'converters': 'libraries/converters',
'aws_tools': 'libraries/aws_tools',
'door43_tools': 'libraries/door43_tools',
'general_tools': 'libraries/general_tools',
'gogs_tools': 'libraries/gogs_tools',
'lambda_handlers': 'libraries/lambda_handlers',
'manager': 'libraries/manager',
'resource_container': 'libraries/resource_container'
},
packages=[
'client_converter_callback',
'client_linter_callback',
'client_webhook',
'convert_md2html',
'convert_usfm2html',
'door43_deploy',
'list_endpoints',
'register_module',
'client',
'converters',
'aws_tools',
'door43_tools',
'general_tools',
'gogs_tools',
'lambda_handlers',
'manager',
'resource_container'
],
package_data={'converters': ['templates/*.html']},
author='unfoldingWord',
author_email='unfoldingword.org',
description='Unit test setup file.',
keywords=[
'tX manager',
'unfoldingword',
'usfm',
'md2html',
'usfm2html'
],
url='https://github.org/unfoldingWord-dev/tx-manager',
long_description='Unit test setup file',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
install_requires=[
'requests>=2.13.0',
'responses==0.5.1',
'boto3==1.4.4',
'bs4==0.0.1',
'gogs_client==1.0.3',
'coveralls==1.1',
'python-json-logger==0.1.5',
'markdown==2.6.8',
'markdown2==2.3.4',
'future==0.16.0',
'pyparsing==2.1.10',
'usfm-tools==0.0.22',
'mock', # travis reports syntax error in mock setup.cfg if we give version
'moto==1.0.1',
'PyYAML==3.12',
'pymysql==0.7.11',
'sqlalchemy==1.2.0b2',
],
test_suite='tests'
)