-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.02 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
from os import path
from setuptools import setup, find_packages
from honey import VERSION
with open(path.join(path.dirname(__file__), 'README.rst')) as f:
readme = f.read()
setup(
name='honey',
version='.'.join(map(str, VERSION)),
license='Apache License, Version 2.0',
description='Full drop-in replacement and enhancment for django templates using mako templates.',
long_description=readme,
url='https://github.com/bigjason/honey',
author='Jason Webb',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
keywords='django templates mako',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Text Processing :: Markup',
'Framework :: Django',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: Apache Software License'
],
install_requires = [
]
)