forked from mgood/js.handlebars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 752 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
#!/usr/bin/python
import setuptools
from setuptools import find_packages
from glob import glob
setuptools.setup(
name = 'js.handlebars',
version = '1.0.10',
license = 'BSD',
description = 'Fanstatic package for Handlebars.js',
long_description = open('README.txt').read(),
author = 'Jacco Taal',
author_email = 'j@jaccotaal.nl',
url = 'http://github.com/jrtaal/js.handlebars/',
platforms = 'any',
packages=find_packages(),
namespace_packages=['js'],
include_package_data=True,
data_files = [('js/handlebars/resources',glob('js/handlebars/resources/*.js'))],
zip_safe = False,
install_requires=[
'fanstatic',
],
entry_points={
'fanstatic.libraries': [
'handlebars = js.handlebars:library',
],
},
)