https://github.com/annotation/text-fabric
Raw File
Tip revision: 1866e7427945d35065d6aac680d29668db633115 authored by Dirk Roorda on 06 January 2017, 14:06:04 UTC
New major release 2.2.0
Tip revision: 1866e74
setup.py
from distutils.core import setup
#from Cython.Build import cythonize

setup(
    name='text-fabric',
    packages=['tf'],
    version='2.2.0',
    description='''Processor for Text Fabric Data''',
    author='Dirk Roorda',
    author_email='shebanq@ancient-data.org',
    url='https://github.com/ETCBC/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",
    ],
#    ext_modules = cythonize('tf/search.pyx'),
    long_description = '''\
Tools to read Text-Fabric resources analyse them efficiently.
More info on https://github.com/ETCBC/text-fabric/wiki
''',
)
back to top