-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 812 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
from setuptools import setup
from pounce import __version__
setup(
name='django-pounce',
version=__version__,
author="Jacob Budin",
author_email='[email protected]',
description=("Django middleware for preloading resources using the HTTP Link header"),
install_requires=[],
license='BSD',
keywords='django preload performance',
url='https://github.com/jacobbudin/django-pounce',
packages=[
'pounce',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Topic :: Utilities',
],
)