-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 816 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="Kirby",
description="Create websites with Markdown + Jinja2 and upload to Amazon CloudFront.",
version="0.0.1",
author="Kyle Fox",
author_email="[email protected]",
url="http://github.com/kylefox/kirby",
scripts=['bin/kirby'],
packages=find_packages(),
include_package_data=True,
install_requires=[
"setuptools",
"jinja2",
"markdown",
"pyyaml",
"boto"
],
classifiers=[ # see http://diveintopython3.org/packaging.html#trove
"Development Status :: 2 - Pre-Alpha",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Topic :: Internet :: WWW/HTTP :: Site Management",
]
)