-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
33 lines (31 loc) · 983 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
32
33
from setuptools import setup
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name='lucene-querybuilder',
version='0.2',
author='Edd Purcell',
author_email='[email protected]',
maintainer='Matt Luongo',
maintainer_email='[email protected]',
description='A DSL to build Lucene text queries in Python.',
url = "http://packages.python.org/lucene-querybuilder",
packages=['lucenequerybuilder',],
include_package_data=True,
zip_safe=False,
long_description=read('README.rst'),
platforms=['posix'],
tests_require=[
'nose>=1.0',
'nose-regression==1.0',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Topic :: Text Processing :: Indexing',
'Programming Language :: Python'
]
)