-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
28 lines (25 loc) · 957 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
# encoding: utf-8
from setuptools import setup, find_packages
setup(
name='django_addanother',
version='2.1.0',
author='Jonas Haag, James Pic',
author_email='jonas@lophus.org, jamespic@gmail.com',
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.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
)