-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 885 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
from distutils.core import setup
setup(
name='django-submodel',
version='0.1',
license='MIT',
author='Li Meng',
author_email='[email protected]',
packages=['submodel'],
description='A Django model field which value works like a model instance and supports seamless inline editing in Django admin.',
long_description=open('README.rst').read(),
url='https://github.com/liokm/django-submodel',
download_url='https://github.com/liokm/django-submodel',
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',
]
)