-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
55 lines (42 loc) · 1.55 KB
/
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
#!/usr/bin/env python
"""Setup script for Robot's MongoDB Library distributions"""
import setuptools
import sys, os
sys.path.insert(0, os.path.join('src', 'MongoDBLibrary'))
from version import VERSION
requirements = [
'tox>=3.0.0',
'coverage',
'robotframework>=3.0',
'pymongo>=3.8.0',
'bson>=0.5.8'
]
test_requirements = [
# TODO: put package test requirements here
]
CLASSIFIERS = """
Development Status :: 5 - Production/Stable
License :: Public Domain
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Testing
"""[1:-1]
def main():
setuptools.setup(name='robotframework-mongodb-library',
version=VERSION,
description='Mongo Database utility library for Robot Framework',
author='Akkharaphon Tangpaopong',
author_email='[email protected]',
url='https://github.com/robotframework-thailand/robotframework-mongodb-library',
keywords=['mongodb', 'robotframework', 'robotframework-mongodb-library', 'MongoDBLibrary'],
package_dir={'': 'src'},
packages=['MongoDBLibrary'],
include_package_data=True,
install_requires=requirements,
zip_safe=False,
classifiers=CLASSIFIERS.splitlines(),
test_suite='tests',
tests_require=test_requirements
)
if __name__ == "__main__":
main()