|
9 | 9 |
|
10 | 10 | VERSION = "0.0.1"
|
11 | 11 |
|
12 |
| -DESCRIPTION = "Add-on containing scoring engine widgets for PFA, PMML and ONNX models" |
| 12 | +DESCRIPTION = "Add-on containing scoring engine widgets for PFA, PMML and ONNX (coming soon) models" |
13 | 13 | LONG_DESCRIPTION = open(path.join(path.dirname(__file__), 'README.md')).read()
|
14 | 14 |
|
15 | 15 | LICENSE = "MIT"
|
16 | 16 |
|
17 |
| -KEYWORDS = ( |
| 17 | +KEYWORDS = [ |
18 | 18 | # [PyPi](https://pypi.python.org) packages with keyword "orange3 add-on"
|
19 | 19 | # can be installed using the Orange Add-on Manager
|
20 | 20 | 'orange3 add-on',
|
|
23 | 23 | 'pfa',
|
24 | 24 | 'pmml',
|
25 | 25 | 'onnx',
|
26 |
| -) |
| 26 | +] |
27 | 27 |
|
28 | 28 | PACKAGES = find_packages()
|
29 | 29 |
|
30 | 30 | PACKAGE_DATA = {
|
31 |
| - 'orangecontrib.scoring': ['tutorials/*.ows'], |
| 31 | + 'orangecontrib.scoring': ['tutorials/*.ows', 'tests/*.json', 'tests/*.xml'], |
32 | 32 | 'orangecontrib.scoring.widgets': ['icons/*'],
|
33 | 33 | }
|
34 | 34 |
|
@@ -88,21 +88,46 @@ def include_documentation(local_dir, install_dir):
|
88 | 88 | DATA_FILES.extend(doc_files)
|
89 | 89 |
|
90 | 90 | if __name__ == '__main__':
|
91 |
| - include_documentation('doc/build/html', 'help/orange3-scoring') |
| 91 | + #include_documentation('doc/build/html', 'help/orange3-scoring') |
92 | 92 | setup(
|
93 | 93 | name=NAME,
|
94 | 94 | version=VERSION,
|
| 95 | + author="Ankit Mahato", |
| 96 | + author_email="ankmahato@gmail.com", |
| 97 | + keywords=KEYWORDS, |
95 | 98 | description=DESCRIPTION,
|
96 | 99 | long_description=LONG_DESCRIPTION,
|
| 100 | + long_description_content_type="text/markdown", |
| 101 | + url="https://github.com/animator/orange3-scoring", |
97 | 102 | license=LICENSE,
|
98 | 103 | packages=PACKAGES,
|
99 | 104 | package_data=PACKAGE_DATA,
|
100 | 105 | data_files=DATA_FILES,
|
101 | 106 | install_requires=INSTALL_REQUIRES,
|
| 107 | + python_requires='>=3.5', |
102 | 108 | entry_points=ENTRY_POINTS,
|
103 |
| - keywords=KEYWORDS, |
104 | 109 | namespace_packages=NAMESPACE_PACKAGES,
|
105 | 110 | test_suite=TEST_SUITE,
|
106 | 111 | include_package_data=True,
|
107 | 112 | zip_safe=False,
|
| 113 | + classifiers=[ |
| 114 | + 'Development Status :: 3 - Alpha', |
| 115 | + 'Intended Audience :: Developers', |
| 116 | + 'Intended Audience :: Education', |
| 117 | + 'Intended Audience :: Information Technology', |
| 118 | + 'Intended Audience :: Science/Research', |
| 119 | + 'Topic :: Scientific/Engineering', |
| 120 | + 'Topic :: Scientific/Engineering :: Artificial Intelligence', |
| 121 | + 'Topic :: Software Development', |
| 122 | + 'Topic :: Software Development :: Libraries', |
| 123 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 124 | + 'License :: OSI Approved :: MIT License', |
| 125 | + 'Programming Language :: Python :: 3 :: Only', |
| 126 | + 'Programming Language :: Python :: 3', |
| 127 | + 'Programming Language :: Python :: 3.5', |
| 128 | + 'Programming Language :: Python :: 3.6', |
| 129 | + 'Programming Language :: Python :: 3.7', |
| 130 | + 'Programming Language :: Python :: 3.8', |
| 131 | + 'Natural Language :: English', |
| 132 | + ], |
108 | 133 | )
|
0 commit comments