Skip to content

Commit 7f7761e

Browse files
committed
add more info in setup file about the package (#7)
update version check for dependencies in install_requires update version of release
1 parent ed78b8b commit 7f7761e

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

setup.py

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,28 +19,37 @@
1919
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
2020

2121
__name__ = 'drf-url-filters'
22-
__version__ = '0.1.2'
22+
__version__ = '0.1.3'
2323
__author__ = 'Manjit Kumar'
2424
__author_email__ = '[email protected]'
2525
__url__ = 'https://github.com/manjitkumar/drf-url-filters'
26+
__download_url__ = 'https://github.com/manjitkumar/drf-url-filters/archive/v0.1.3.tar.gz'
27+
2628

2729
setup(
2830
name=__name__,
2931
version=__version__,
3032
packages=['filters'],
3133
include_package_data=True,
3234
description=(
33-
'A django app to apply filters on drf querysets'
35+
'A django app to apply filters on drf querysets '
3436
'using query params with validations using voluptuous.'
3537
),
3638
long_description=README,
3739
url=__url__,
40+
download_url=__download_url__,
3841
author=__author__,
3942
author_email=__author_email__,
4043
install_requires=[
41-
'Django==1.8.11',
42-
'djangorestframework==3.3.3',
43-
'voluptuous==0.8.10',
44+
'Django>=1.8.11',
45+
'djangorestframework>=3.3.3',
46+
'voluptuous>=0.8.10',
47+
],
48+
classifiers=[
49+
'Development Status :: 3 - Alpha',
50+
'Intended Audience :: Developers',
51+
'License :: OSI Approved :: MIT License',
52+
'Programming Language :: Python :: 2.7',
4453
],
45-
classifiers=[]
54+
keywords='drf-url-filters, filters, queryparamters',
4655
)

0 commit comments

Comments
 (0)