Skip to content
This repository was archived by the owner on Nov 21, 2017. It is now read-only.

Commit 7416ddf

Browse files
committed
Update setup.py with cheeseshop classifiers
1 parent b4934ce commit 7416ddf

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

setup.py

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,33 @@
77
use_setuptools()
88
from setuptools import setup
99

10+
import l2cs
11+
version = l2cs.__version__
12+
1013
setup(
1114
name='l2cs',
12-
version="1.0.1",
15+
version=version,
1316
author='Keith Mitchell',
1417
author_email='[email protected]',
1518
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
)

0 commit comments

Comments
 (0)