-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (35 loc) · 1.25 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
34
35
36
37
38
39
40
41
42
43
# Imports from python. # NOQA
import os
from setuptools import find_packages
from setuptools import setup
# Imports from grappelli-nested.
from grappelli_nested import __version__
REPO_URL = 'https://github.com/allanjamesvestal/grappelli-nested-inlines/'
PYPI_VERSION = '.'.join(str(v) for v in __version__)
DESCRIPTION = 'Enables nested inlines in the Django/Grappelli admin'
setup(
name='grappelli-nested-inlines',
version=PYPI_VERSION,
packages=find_packages(exclude=['tests']),
include_package_data=True,
license='MIT License',
description=DESCRIPTION,
long_description=DESCRIPTION,
url=REPO_URL,
download_url='{repo_url}archive/{version}.tar.gz'.format(**{
'repo_url': REPO_URL,
'version': PYPI_VERSION,
}),
author='Allan James Vestal (based on code by Alain Trinh)',
author_email='allanjamesvestal@gmail.com',
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'
],
)