forked from matthewwithanm/django-html5boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.18 KB
/
setup.py
File metadata and controls
36 lines (32 loc) · 1.18 KB
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
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.markdown')
setup(
name = "django-html5boilerplate",
version = "0.1",
description='Provides an easy way to use Paul Irish\'s HTML5 Boilerplate in Django projects.',
url = 'http://github.com/matthewwithanm/django-html5boilerplate',
license = 'BSD',
long_description=README,
author = 'Matthew Tretter',
author_email = 'matthew@exanimo.com',
packages = [
'html5boilerplate',
'html5boilerplate.templates',
'html5boilerplate.templatetags',
],
package_data = {'html5boilerplate': ['templates/*', 'static/*']},
install_requires = ['BeautifulSoup>=3.2.0'], # TODO: Relax this requirement a bit. I'm sure it works with a much earlier version.
zip_safe = False,
classifiers = [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)