This repository was archived by the owner on Nov 21, 2017. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed
Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change 77 use_setuptools ()
88 from setuptools import setup
99
10+ import l2cs
11+ version = l2cs .__version__
12+
1013setup (
1114 name = 'l2cs' ,
12- version = "1.0.1" ,
15+ version = version ,
1316 author = 'Keith Mitchell' ,
14171518 description = ("Rewrites queries from lucene syntax to"
1619 " Amazon Cloudsearch syntax" ),
1720 license = 'BSD' ,
1821 url = "http://github.com/kemitche/l2cs" ,
22+ download_url = "http://github.com/kemitche/l2cs/tarball/v%(ver)s#egg=l2cs-%(ver)s" % {'ver' : version },
1923 install_requires = ["whoosh>=2.3" ],
2024 py_modules = ['l2cs' ],
2125 include_package_data = True ,
2226 test_suite = "test_l2cs" ,
27+
28+ classifiers = [
29+ 'Classifier: Development Status :: 5 - Production/Stable' ,
30+ 'Classifier: Intended Audience :: Developers' ,
31+ 'Classifier: Intended Audience :: Information Technology' ,
32+ 'Classifier: License :: OSI Approved :: BSD License' ,
33+ 'Classifier: Programming Language :: Python :: 2.6' ,
34+ 'Classifier: Programming Language :: Python :: 2.7' ,
35+ 'Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search' ,
36+ 'Classifier: Topic :: Software Development :: Libraries' ,
37+ 'Classifier: Topic :: Software Development :: Libraries :: Python Modules' ,
38+ ],
2339)
You can’t perform that action at this time.
0 commit comments