|
15 | 15 | # TODO: put package test requirements here |
16 | 16 | ] |
17 | 17 |
|
| 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 | + |
18 | 27 | setup( |
19 | 28 | name='robotframework-jsonlibrary', |
20 | 29 | version=VERSION, |
21 | 30 | description="robotframework json jsonpath", |
22 | 31 | author="Traitanit Huangsri", |
23 | | - author_email='traitanit.hua@ascendcorp.com', |
| 32 | + author_email='traitanit.hua@gmail.com', |
24 | 33 | url='[email protected]:nottyo/robotframework-jsonlibrary.git', |
25 | 34 | packages=[ |
26 | 35 | 'JSONLibrary' |
|
31 | 40 | install_requires=requirements, |
32 | 41 | zip_safe=False, |
33 | 42 | 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(), |
46 | 44 | test_suite='tests', |
47 | 45 | tests_require=test_requirements |
48 | 46 | ) |
0 commit comments