Skip to content

Commit 98dfd6c

Browse files
Update setup.py
1 parent 2a8fed2 commit 98dfd6c

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,27 @@
1111

1212
setup(name='textcl',
1313
packages=['textcl'],
14-
version='1.0.0',
14+
version='1.0.1',
1515
license='MIT',
1616
description='Text preprocessing package for use in NLP tasks',
1717
long_description=long_description,
1818
long_description_content_type='text/markdown',
1919
author = 'Alina Petukhova',
2020
author_email = '[email protected]',
2121
url = 'https://github.com/alinapetukhova/textcl',
22-
download_url = 'https://github.com/alinapetukhova/textcl/archive/refs/tags/v.0.1.3.tar.gz',
22+
download_url = 'https://github.com/alinapetukhova/textcl/archive/refs/tags/v.1.0.1.tar.gz',
2323
keywords = ['NLP', 'Text preprocessing', 'Outlier detection'],
2424
install_requires=req,
25-
python_requires='>=3.6',
25+
python_requires='>=3.8',
2626
zip_safe=False,
2727
classifiers=[
2828
'Development Status :: 4 - Beta',
2929
'Intended Audience :: Developers',
3030
'Topic :: Scientific/Engineering :: Artificial Intelligence',
3131
'License :: OSI Approved :: MIT License',
32-
'Programming Language :: Python :: 3.6',
33-
'Programming Language :: Python :: 3.7',
3432
'Programming Language :: Python :: 3.8'
33+
'Programming Language :: Python :: 3.9',
34+
'Programming Language :: Python :: 3.10',
35+
'Programming Language :: Python :: 3.11',
36+
'Programming Language :: Python :: 3.12',
3537
])

0 commit comments

Comments
 (0)