-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 937 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
from setuptools import setup, find_packages
setup(name='ddh_django_utils',
version = '0.9.4',
description = 'Reusable Django app containing utilities for DDH projects',
url = 'https://github.com/kcl-ddh/ddh_django_utils',
author = 'Jamie Norrish',
author_email = '[email protected]',
license = 'Apache License, Version 2.0',
packages = find_packages(),
package_data = {
'ddh_utils': ['templates/includes/*.html']
},
classifiers = [
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
)