forked from imbus/robotframework-libdoc2testbench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSetup.py
More file actions
43 lines (40 loc) · 1.59 KB
/
Setup.py
File metadata and controls
43 lines (40 loc) · 1.59 KB
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 setuptools import setup
from setuptools import find_packages
import re
from os.path import abspath, dirname, join
CURDIR = dirname(abspath(__file__))
with open(join(CURDIR, "src", "Libdoc2TestBench", "__init__.py"), encoding="utf-8") as f:
VERSION = re.search('\n__version__ = "(.*)"', f.read()).group(1)
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="robotframework-libdoc2testbench",
version=VERSION,
author="imbus AG | Maximilian Birkenhagen",
author_email="maximilian.birkenhagen@imbus.de",
description="Robot Framework Libdoc Extension that generates imbus TestBench Library import formats.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/imbus/robotframework-libdoc2testbench",
package_dir={"": "src"},
packages=find_packages("src"),
entry_points={
'console_scripts': [
'Libdoc2TestBench = Libdoc2TestBench.__main__:main',
'libdoc2testbench = Libdoc2TestBench.__main__:main',
]
},
classifiers=[
"Environment :: Console",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Acceptance",
"Framework :: Robot Framework",
],
install_requires=["robotframework >= 4.0.0"],
python_requires=">=3.7",
)