diff --git a/setup.py b/setup.py index 2901dfbc1e29fa8906740d06d240979add979b7b..ef74f195779d101c8e294576a5784780f9052410 100644 --- a/setup.py +++ b/setup.py @@ -23,17 +23,30 @@ REQUIREMENTS = [ "filelock~=3.9.0", "pytest~=7.2.2", "transformers~=4.27.3", - "spacy~=3.3.1" + "spacy~=3.3.1", + "lambo" ] setup( name="combo", - version="2.0.0", + version="3.0.0", author="Maja Jablonska", author_email="maja.jablonska@ipipan.waw.pl", install_requires=REQUIREMENTS, packages=find_packages(exclude=['tests']), license="GPL-3.0", keywords="nlp natural-language-processing dependency-parsing", - entrypoints={'console_scripts': ['combo = combo.main:main']} + tests_require=['pytest', 'pylint'], + python_requires='>=3.6', + entrypoints={'console_scripts': ['combo = combo.main:main']}, + classifiers=[ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', + 'Topic :: Scientific/Engineering :: Artificial Intelligence' + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + ] ) \ No newline at end of file