forked from annotation/text-fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·38 lines (37 loc) · 1.45 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from distutils.core import setup
#from Cython.Build import cythonize
setup(
name='text-fabric',
packages=['tf'],
version='2.3.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
''',
)