-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
27 lines (23 loc) · 794 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
#!/usr/bin/env python
import os
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES
VERSION = '0.1'
setup(name='django-jimmypage',
version=VERSION,
description="Generational page cacheing for Django",
author='Charlie DeTar',
author_email='[email protected]',
url='http://github.com/yourcelf/jimmypage',
packages=['jimmypage'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
)