forked from peterbe/django-static
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (34 loc) · 1.29 KB
/
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
36
37
38
39
#!/usr/bin/env python
from distutils.core import setup
# django-static doesn't have a version but this setup.py does
VERSION = '1.3.8' # remember to match with django_static/__init__.py
import os
long_description = open(os.path.join(os.path.dirname(__file__),
'README.md')).read()
setup(
name='django-static',
version=VERSION,
url='http://github.com/peterbe/django-static',
download_url='git://github.com/peterbe/django-static.git',
description='Template tags for better serving static files from templates in Django',
long_description=long_description,
author='Peter Bengtsson',
author_email='[email protected]',
platforms=['any'],
license='BSD',
packages=[
'django_static',
'django_static.templatetags',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
include_package_data=True,
)