Skip to content

Commit a09bb98

Browse files
author
Lukas
committed
setup.py
1 parent c8bcc33 commit a09bb98

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

setup.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)