-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
35 lines (32 loc) · 1.22 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
import os
from setuptools import setup
HERE = os.path.abspath(os.path.dirname(__file__))
version = {}
with open(os.path.join(HERE, "JSONLibrary", "__version__.py"), encoding="utf8") as f:
exec(f.read(), version)
requirements = [
i.strip() for i in open("requirements.txt", encoding="utf8").readlines()
]
setup(
name="robotframework-jsonlibrary",
version=version["__version__"],
description="robotframework-jsonlibrary is a Robot Framework "
"test library for manipulating JSON Object. "
"You can manipulate your JSON object using JSONPath",
author="Traitanit Huangsri",
author_email="[email protected]",
url="https://github.com/nottyo/robotframework-jsonlibrary.git",
packages=["JSONLibrary"],
package_dir={"robotframework-jsonlibrary": "JSONLibrary"},
install_requires=requirements,
include_package_data=True,
keywords="testing robotframework json jsonschema jsonpath",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"License :: Public Domain",
"Programming Language :: Python :: 3",
"Framework :: Robot Framework :: Library",
],
)