-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (18 loc) · 699 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
#!/usr/bin/env python
"""Setup script for Robot's MongoDB Library distributions"""
from distutils.core import setup
import sys, os
sys.path.insert(0, os.path.join('src','MongoDBLibrary'))
from version import VERSION
def main():
setup(name = 'robotframework-mongodblibrary',
version = VERSION,
description = 'Mongo Database utility library for Robot Framework',
author = 'Jerry Schneider',
author_email = '[email protected]',
url = 'https://github.com/',
package_dir = { '' : 'src'},
packages = ['MongoDBLibrary']
)
if __name__ == "__main__":
main()