forked from purcell/airspeed
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·55 lines (52 loc) · 1.63 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
49
50
51
52
53
54
55
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="airspeed-ext",
version="0.6.7",
description=(
"Airspeed is a powerful and easy-to-use templating engine "
"for Python that aims for a high level of compatibility "
"with Velocity templates in AWS cloud services."
),
author="Steve Purcell, Chris Tarttelin, LocalStack Team",
url="https://github.com/localstack/airspeed/",
download_url="http://pypi.python.org/pypi/airspeed/",
license="BSD",
keywords="web.templating",
install_requires=[
"six",
"cachetools",
],
extras_require={"dev": [
"black",
"deepdiff",
"isort",
"flake8",
"flake8-black",
"flake8-isort",
"localstack-core[runtime]",
"pytest",
"pytest-httpserver",
"localstack-snapshot",
]},
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",
]
},
)