https://github.com/annotation/text-fabric
Raw File
Tip revision: 7338e8d3c3b3dee92ddaf408a698f54a75a2f76c authored by Dirk Roorda on 21 October 2017, 19:09:19 UTC
New minor release 3.1.1
Tip revision: 7338e8d
setup.py
from distutils.core import setup
#from Cython.Build import cythonize

setup(
    name='text-fabric',
    packages=['tf'],
    version='3.1.1',
    description='''Processor for Text Fabric Data''',
    author='Dirk Roorda',
    author_email='dirk.roorda@dans.knaw.nl',
    url='https://github.com/Dans-labs/text-fabric',
    keywords = ['text', 'linguistics', 'database', 'graph', 'hebrew', 'greek', 'syriac'],
    classifiers = [
        "Development Status :: 4 - Beta",
        "Environment :: Other Environment",
        "Intended Audience :: Education",
        "Intended Audience :: Religion",
        "Intended Audience :: Science/Research",
        "License :: Free for non-commercial use",
        "Natural Language :: English",
        "Natural Language :: Hebrew",
        "Natural Language :: Greek",
        "Operating System :: MacOS :: MacOS X",
        "Operating System :: Microsoft :: Windows",
        "Operating System :: POSIX :: Linux",
        "Programming Language :: Python :: 3 :: Only",
        "Programming Language :: Python :: Implementation :: CPython",
        "Topic :: Religion",
        "Topic :: Scientific/Engineering :: Information Analysis",
        "Topic :: Text Processing :: Linguistic",
        "Topic :: Text Processing :: Markup :: XML",
    ],
    long_description = '''\
Tools to read Text-Fabric resources analyse them efficiently.
More info on https://github.com/Dans-labs/text-fabric/wiki
''',
)
back to top