forked from semirook/sphinxit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (27 loc) · 910 Bytes
/
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
import codecs
from os import path
from setuptools import setup, find_packages
read = lambda filepath: codecs.open(filepath, 'r', 'utf-8').read()
setup(
name='sphinxit',
version='0.2.1',
author='Roman Semirook',
author_email='[email protected]',
packages=find_packages(),
license='BSD',
url='https://github.com/semirook/sphinxit',
description='Lite and powerful SphinxQL query constructor',
long_description=read(path.join(path.dirname(__file__), 'README.rst')),
install_requires=[
"six >= 1.1.0",
"oursql >= 0.9.3",
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)