setup.py 773 Bytes
import setuptools

install_requires = [
    'tensorflow==2.16.1',
    'numpy<2.0',
    'tf-keras',
    'transformers==4.51.3',
    'datasets==3.6.0',
    'sacremoses',
    'morfeusz2',
    'conllu',
    'scikit-learn',
]

dependency_links = [
    'git+https://github.com/stanojevic/Fast-MST-Algorithm',
]

setuptools.setup(
    name='hydra',
    version='0.7',
    author='Katarzyna Krasnowska-Kieraś',
    author_email='kasia.krasnowska@gmail.com',
    description='segmentation, lemmatisation, tagging and hybrid constituency-dependency parsing for Polish',
    url='http://git.nlp.ipipan.waw.pl/constituency/Parser',
    packages=setuptools.find_packages(),
    install_requires=install_requires,
    dependency_links=dependency_links,
    python_requires='>=3.8.*',
)