-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
30 lines (29 loc) · 1.05 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
from setuptools import setup, find_packages
setup(
name="amplecode.recipe.template",
version="1.1",
author="Torgeir Lorange Ostby",
author_email="[email protected]",
url="http://github.com/torgeilo/amplecode.recipe.template",
description="Buildout recipe for making files out of Jinja2 templates",
long_description=open("README.rst").read(),
classifiers=(
"Framework :: Buildout",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Pre-processors",
),
keywords="zc.buildout recipe template Jinja2",
license="BSD",
packages=find_packages(),
namespace_packages=("amplecode", "amplecode.recipe"),
install_requires=("setuptools", "zc.recipe.egg", "Jinja2"),
zip_safe=True,
entry_points="""
[zc.buildout]
default = amplecode.recipe.template:Recipe
""",
)