Skip to content

Commit

Permalink
Merge branch 'release/3.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
wichy13-js committed Jul 31, 2019
2 parents 9d63251 + c0d0b2d commit 6d635cf
Showing 1 changed file with 35 additions and 9 deletions.
44 changes: 35 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,44 @@

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'],
package_dir={'': 'src'},
packages=['MongoDBLibrary']
)
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__":
Expand Down

0 comments on commit 6d635cf

Please sign in to comment.