-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 911 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
31
32
33
34
35
# Use setuptools if we can
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
PACKAGE = 'django_cape'
VERSION = '1.0'
package_data = {
'django_cape': [ 'templates/cape/*.html' ],
}
setup(
name=PACKAGE, version=VERSION,
description="Django app that provides CAPE templates for progressive enhancement.",
packages=[
'django_cape',
],
package_data=package_data,
license='MIT',
author='James Aylett and Mark Norman Francis',
author_email='[email protected]',
install_requires=[
'Django>=1.6.0',
],
url = 'https://github.com/devfort/django-cape',
classifiers = [
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)