-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
51 lines (48 loc) · 1.62 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
39
40
41
42
43
44
45
46
47
48
49
50
51
from distutils.core import setup
from distutils.extension import Extension
noaho_module = Extension(
'noaho',
sources=[
# Cython generated
'src/noaho.cpp',
# original
'src/array-aho.cpp'],
depends=[
'src/array-aho.h',
'src/HashMap.h',
'src/LinearHashTable.h',
'src/noaho.pyx']
)
version = '0.9.6.1'
setup(
name='NoAho',
version=version,
author='Jeff Donner',
author_email='[email protected]',
maintainer='Jeff Donner',
maintainer_email='[email protected]',
url='https://github.com/JDonner/NoAho',
download_url='http://pypi.python.org/packages/source/N/NoAho/NoAho-%s.tar.gz' % version,
description='Fast, non-overlapping simultaneous multiple keyword search',
long_description=open('README.txt').read(),
ext_modules=[noaho_module],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Programming Language :: C++',
'Programming Language :: Cython',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Operating System :: OS Independent',
'Environment :: Console',
'Topic :: Text Processing',
]
)