-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 711 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#####!/usr/bin/env python
from setuptools import setup, find_packages
from version import __VERSION__
setup(
name='dgraph_library',
version=__VERSION__, # resolved with execfile
description='lib Library',
classifiers=[
'Programming Language :: Python :: 2.x',
'Programming Language :: Python :: 3.x',
],
author='Kaushik',
author_email='tkrishnakaushik96@gmail.io',
url='https://github.com/robotframework/SSHLibrary',
license='Apache License 2.0',
keywords='robotframework dgraph testing',
platforms='any',
packages=find_packages(),
install_requires=['robotframework', 'robotframework-seleniumlibrary', 'webdrivermanager', 'testrail_api'],
)