forked from mdogo/grappelli-nested-inlines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (27 loc) · 1.04 KB
/
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
30
31
32
33
#!/usr/bin/python
from setuptools import setup, find_packages
from grappelli_nested import __version__
github_url = 'https://github.com/datahub/grappelli-nested-inlines'
github_tag_version = '0.5.7'
setup(
name='grappelli-nested-inlines',
version='.'.join(str(v) for v in __version__),
description='Enables nested inlines in the Django/Grappelli admin',
url=github_url,
download_url='%s/tarball/%s' % (github_url, github_tag_version),
author='Allan James Vestal (based on code by Alain Trinh)',
author_email='[email protected]',
packages=find_packages(exclude=['tests']),
include_package_data=True,
license='MIT License',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)