-
Notifications
You must be signed in to change notification settings - Fork 80
/
setup.py
31 lines (27 loc) · 968 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
30
#!/usr/bin/python
from setuptools import setup, find_packages
from nested_inlines import __version__
github_url = 'https://github.com/soaa-/django-nested-inlines'
long_desc = open('README.md').read()
setup(
name='django-nested-inlines',
version='.'.join(str(v) for v in __version__),
description='Adds nested inline support in Django admin',
long_description=long_desc,
url=github_url,
author='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'
],
)