-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
39 lines (34 loc) · 1.36 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
"""Setup module for Robot Framework JSON Validator Library"""
from codecs import open
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
# Get install requires from requirements.txt
with open(path.join(here, 'requirements.txt')) as f:
requirements = f.read().splitlines()
setup(
name='robotframework-jsonvalidator',
version='2.0.0',
description='A Robot Framework JSON Validator Library',
long_description=long_description,
url='https://github.com/peterservice-rnd/robotframework-jsonvalidator',
license='Apache License, Version 2.0',
author='JSC PETER-SERVICE',
author_email='drse_aist_all@billing.ru',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Robot Framework :: Library',
],
keywords='testing robotframework json jsonschema jsonpath jsonselect',
package_dir={'': 'src'},
py_modules=['JsonValidator'],
install_requires=requirements,
)