-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 938 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
from setuptools import setup, find_packages
from lazy_admin import VERSION
setup(
name='django_lazy_admin',
version=VERSION,
description='Enhancement for custom columns in django admin list screens',
long_description=open('README.md').read(),
author='Gautam Kachru',
author_email='[email protected]',
url='https://github.com/gkachru/django_lazy_admin',
packages=find_packages(),
include_package_data=True,
install_requires = ['django'],
license='BSD License',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
zip_safe=False,
)