forked from okgolove/robotframework-jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.27 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
from os.path import join, dirname
from setuptools import setup, find_packages
exec(open(join(dirname(__file__),
'src', 'JenkinsLibrary', 'version.py')).read())
PACKAGE = 'robotframework-jenkins'
DESCRIPTION = '''Library for Robot Framework for Jenkins interaction'''
REQUIREMENTS = [
'python-jenkins>=1.*',
'robotframework>=3.*',
'requests>=2.*'
]
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
CLASSIFIERS = '''
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 3
Topic :: Software Development :: Testing
Framework :: Robot Framework
Framework :: Robot Framework :: Library
'''.strip().splitlines()
setup(
name=PACKAGE,
package_dir={'': 'src'},
packages=find_packages('src'),
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author='Mikhail Naletov',
author_email='[email protected]',
url='https://github.com/okgolove/robotframework-jenkins',
keywords=['jenkins', 'robotframework', 'robot', 'testing'],
classifiers=CLASSIFIERS,
install_requires=REQUIREMENTS,
)