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 40 41 42 43 44 45 46 47 48 49 50
|
#!/usr/bin/env python2.7
# encoding: utf-8
import sys
from setuptools import setup, find_packages
if sys.version_info <= (2, 6):
raise SystemExit("Python 2.6 or later is required.")
setup(
name="airspeed",
version="0.6.0",
description=("Airspeed is a powerful and easy-to-use templating engine"
" for Python that aims for a high level of compatibility "
"with the popular Velocity library for Java."),
author="Steve Purcell and Chris Tarttelin",
author_email="steve@pythonconsulting.com, chris@pythonconsulting.com",
url="https://github.com/purcell/airspeed/",
download_url="http://pypi.python.org/pypi/airspeed/",
license="BSD",
keywords='web.templating',
install_requires=[
'six',
'cachetools',
],
test_suite='tests',
tests_require=[],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"],
packages=find_packages(
exclude=[
'examples',
'tests',
'tests.*',
'docs']),
include_package_data=False,
zip_safe=True,
entry_points={
'web.templating': [
'airspeed = airspeed.api:Airspeed',
]})
|