-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.13 KB
/
setup.py
File metadata and controls
35 lines (31 loc) · 1.13 KB
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
34
35
from setuptools import setup
__doc__ = """
Django Admin compatible ModelInline that can be related
to the primary model on fields other than a Primary Key.
"""
setup(
name='django-arbitrary-inline',
version='0.1.2',
author='James Robert',
author_email='james@mediapredict.com',
description='Django Admin compatible ModelInline that can be related '
'to the primary model on fields other than a Primary Key',
license='BSD',
keywords='django django-admin',
url='https://github.com/mediapredict/django_arbitrary_inline',
packages=['arbitrary_inline'],
long_description=__doc__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Environment :: Web Environment',
]
)