File size: 549 Bytes
ebdb5af | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | from setuptools import setup, find_packages
setup(
name='pt_variety_identifier',
version='0.0.1',
description='Identify the variety of Portuguese used in a text',
install_requires=[
'pandas',
'datasets',
'zstandard',
'clean-text[gpl]',
'fasttext-langdetect',
'numpy',
'tqdm',
'imbalanced-learn',
'spacy[cuda11x]',
'evaluate',
'nltk',
'transformers',
'torch',
],
packages=find_packages(),
author='John Doe'
)
|