-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsetup.py
executable file
·55 lines (48 loc) · 1.8 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
52
53
54
55
#!/usr/bin/python
# -*- coding: utf-8 -*-
from os import path
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
from setuptools import setup, find_packages
with open('%s/VERSION' % here) as f:
__version__ = f.readline().strip()
setup(
author='abusix',
author_email='[email protected]',
description='ahocorapy - Pure python ahocorasick implementation',
long_description=long_description,
long_description_content_type="text/markdown",
name='ahocorapy',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=['future'],
python_requires='>=2.7',
url='https://github.com/abusix/ahocorapy',
project_urls={
'Source': 'https://github.com/abusix/ahocorapy',
'Company': 'https://www.abusix.com/'
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
keywords = ['keyword', 'search', 'purepython', 'aho-corasick', 'ahocorasick', 'abusix'],
license='MIT',
version=__version__
)