From ff02e80ff67d911cd2c5dc044d316e78d9f23e6c Mon Sep 17 00:00:00 2001 From: Rafael Goncalves Date: Wed, 5 Jun 2024 16:15:18 -0400 Subject: [PATCH] Update setup.py --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7292f02..d6d71c5 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages from text2term.config import VERSION -description = 'A tool for mapping free-text descriptions of (biomedical) entities to controlled terms in ontologies' +description = 'a tool for mapping free-text descriptions of entities to ontology terms' long_description = open('README.md').read() with open('requirements.txt') as f: @@ -24,9 +24,13 @@ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', + 'Environment :: Console', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Topic :: Scientific/Engineering' ], python_requires=">=3.9",