forked from adrian-evo/robotframework-sikulixlibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (35 loc) · 1.42 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages # type: ignore
import sys
# get __version__ number
exec(compile(open('SikuliXLibrary/version.py', "rb").read(), 'SikuliXLibrary/version.py', 'exec'))
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
install_requires = open(os.path.join("SikuliXLibrary", "requirements.txt")).readlines()
setup_kwargs = {
"name": "robotframework-sikulixlibrary",
"version": __version__,
"description": "Robot Framework SiluliX library powered by SikuliX Java library and JPype or Py4J Python modules.",
"long_description": long_description,
"long_description_content_type": "text/markdown",
"author": "Adrian V.",
"author_email": "[email protected]",
"maintainer": None,
"maintainer_email": None,
"url": "https://github.com/adrian-evo/robotframework-sikulixlibrary",
"packages": find_packages(exclude=["test"]),
"include_package_data" : True,
"install_requires": install_requires,
"python_requires": ">=3.7,<4.0",
"classifiers": [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Library",
],
}
setup(**setup_kwargs)