forked from jonashaag/django-addanother
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (21 loc) · 760 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
# encoding: utf-8
from setuptools import setup, find_packages
setup(
name='django_addanother',
version='2.0.2',
author='Jonas Haag, James Pic',
author_email='[email protected], [email protected]',
packages=find_packages(exclude=['test_project']),
zip_safe=False,
include_package_data=True,
url='https://github.com/jonashaag/django-addanother',
description='"Add another" buttons outside the Django admin',
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
]
)