-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
40 lines (33 loc) · 1.15 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
from setuptools import find_packages, setup
from RobotFrameworkService.version import get_version
CLASSIFIERS = """
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Framework :: FastAPI
Framework :: Robot Framework
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
""".strip().splitlines()
def get_long_description():
with open("README.md", "r") as file:
return file.read()
def get_requirements():
with open("requirements.txt", "r") as file:
return file.readlines()
setup(
name="robotframework-webservice",
version=get_version(),
classifiers=CLASSIFIERS,
description="Webservice for running Robot Framework tasks",
author="Markus Stahl",
packages=find_packages(),
install_requires=[get_requirements()],
long_description=get_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/MarketSquare/robotframework-webservice",
zip_safe=False,
)