https://github.com/annotation/text-fabric
Raw File
Tip revision: cefc363944096520d5880f5e6a005e8b49fbb416 authored by Dirk Roorda on 30 November 2016, 19:49:50 UTC
New minor release 0.0.7
Tip revision: cefc363
setup.py
from distutils.core import setup
setup(
    name='text-fabric',
    packages=['tf'],
    version='0.0.7',
    description='''Processor for Text Fabric Data''',
    author='Dirk Roorda',
    author_email='shebanq@ancient-data.org',
    url='https://github.com/dirkroorda/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://shebanq.ancient-data.org
''',
)
back to top