All Downloads are FREE. Search and download functionalities are using the official Maven repository.

resources.wrappers.FileJsonKeras.gate-lf-python-data.setup.py Maven / Gradle / Ivy

Go to download

A GATE plugin that provides many different machine learning algorithms for a wide range of NLP-related machine learning tasks like text classification, tagging, or chunking.

There is a newer version: 4.2
Show newest version
import os
from setuptools import setup

here = os.path.abspath(os.path.dirname(__file__))


def read(fname):
    return open(os.path.join(here, fname)).read()


readme = read('README.md')

setup(
    name="gatelfdata",
    version="0.2",
    description="Library to handle the dense json data generated by the GATE Learning Framework",
    long_description=readme,
    author="Johann Petrak",
    author_email="[email protected]",
    url="https://github.com/GateNLP/gate-lf-python-data",
    license="Apache 2.0",
    # keywords = "",
    packages=['gatelfdata'],
    py_modules=[],
    install_requires=["numpy"],
    python_requires=">=3",
    # package_data={'packagename': ['listof','relativefiles']}
    # py_modules=[]  # ????
    # scripts=['some.py'],
    # entry_points = {'console_scripts': ['some=some:main']},
    tests_require=['nose'],
    test_suite='nose.collector',
    classifiers=[],
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy