We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8bcc33 commit a09bb98Copy full SHA for a09bb98
setup.py
@@ -0,0 +1,21 @@
1
+#!/usr/bin/env python
2
+from setuptools import setup
3
+
4
+setup(
5
+ name='django-admin-numeric-filter',
6
+ version='0.1.0',
7
+ packages=[
8
+ 'admin_numeric_filter',
9
+ ],
10
+ include_package_data=True,
11
+ install_requires=('django', ),
12
+ classifiers=[
13
+ 'Programming Language :: Python',
14
+ 'Programming Language :: Python :: 3.5',
15
+ 'Programming Language :: Python :: 3.6',
16
+ 'Operating System :: OS Independent',
17
+ 'Environment :: Web Environment',
18
+ 'Intended Audience :: Developers',
19
+ 'Framework :: Django',
20
21
+ keywords="django admin numeric filter",
0 commit comments