forked from rosemichaele/SnowLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 857 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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='robotframework-snowlibrary',
version='1.4.0',
url='',
license='Apache License 2.0',
author='Michael Rose',
author_email='[email protected]',
long_description=long_description,
package_dir={'': 'src'},
packages=find_packages('src', exclude=['contrib', 'docs', 'tests']),
install_requires=['requests', 'bs4','robotframework', 'docutils',
'robotremoteserver', 'pysnow', 'robotframework-sshlibrary', 'rstr'],
description='A Robot Framework Library with keywords for testing ServiceNow.',
# Test requirements
tests_require=['pytest'],
)