Skip to content

Commit 1537a47

Browse files
author
Traitanit Huangsri
committed
update setup script
1 parent 9f70f39 commit 1537a47

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

setup.py

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,21 @@
1515
# TODO: put package test requirements here
1616
]
1717

18+
19+
CLASSIFIERS = """
20+
Development Status :: 5 - Production/Stable
21+
License :: Public Domain
22+
Operating System :: OS Independent
23+
Programming Language :: Python
24+
Topic :: Software Development :: Testing
25+
"""[1:-1]
26+
1827
setup(
1928
name='robotframework-jsonlibrary',
2029
version=VERSION,
2130
description="robotframework json jsonpath",
2231
author="Traitanit Huangsri",
23-
author_email='traitanit.hua@ascendcorp.com',
32+
author_email='traitanit.hua@gmail.com',
2433
url='[email protected]:nottyo/robotframework-jsonlibrary.git',
2534
packages=[
2635
'JSONLibrary'
@@ -31,18 +40,7 @@
3140
install_requires=requirements,
3241
zip_safe=False,
3342
keywords='robotframework-jsonlibrary',
34-
classifiers=[
35-
'Development Status :: 2 - Pre-Alpha',
36-
'Intended Audience :: QA',
37-
'Natural Language :: English',
38-
"Programming Language :: Python :: 2",
39-
'Programming Language :: Python :: 2.6',
40-
'Programming Language :: Python :: 2.7',
41-
'Programming Language :: Python :: 3',
42-
'Programming Language :: Python :: 3.3',
43-
'Programming Language :: Python :: 3.4',
44-
'Programming Language :: Python :: 3.5',
45-
],
43+
classifiers=CLASSIFIERS.splitlines(),
4644
test_suite='tests',
4745
tests_require=test_requirements
4846
)

0 commit comments

Comments
 (0)