-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
38 lines (33 loc) · 1.07 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
from setuptools import setup, find_packages
CLASSIFIERS = """
Development Status :: 3 - Alpha
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
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-ai",
version="0.0.3",
classifiers=CLASSIFIERS,
author="Stijn de Jong",
author_email="[email protected]",
packages=find_packages(where="src"),
package_dir={"": "src"},
long_description=get_long_description(),
long_description_content_type="text/markdown",
include_package_data=True,
package_data={"": ["*.misc"]},
python_requires=">=3.8",
#install_requires=[get_requirements()],
)