-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (37 loc) · 1.46 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
"""Setup module for Robot Framework Docker Library package."""
import os
from setuptools import setup
# get absolute source directory path
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as readme_file:
long_description = readme_file.read().split('long_description split')[1].strip()
setup(
name='robotframework-docker',
version='1.4.2',
description='A Robot Framework Docker Library',
long_description=long_description,
url='https://github.com/vogoltsov/robotframework-docker',
author='Vitaly Ogoltsov',
author_email='[email protected]',
license='Apache License 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Framework :: Robot Framework :: Library',
],
keywords='testing testautomation robotframework docker docker-compose',
package_dir={'': 'src'},
py_modules=['DockerComposeLibrary'],
install_requires=[
'robotframework>=4,<7',
'packaging',
],
)