forked from purcell/airspeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·48 lines (42 loc) · 1.46 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
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
# encoding: utf-8
import sys
from setuptools import setup, find_packages
if sys.version_info <= (2, 1):
raise SystemExit("Python 2.1 or later is required.")
setup(
name="airspeed",
version="0.4.2",
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="[email protected], [email protected]",
url="http://dev.sanityinc.com/airspeed/wiki",
download_url="http://pypi.python.org/pypi/airspeed/",
license="BSD",
keywords='web.templating',
test_suite='nose.collector',
tests_require=[
'nose',
'coverage'],
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',
]})