forked from sebastien/cuisine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.17 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
#!/usr/bin/env python
# Encoding: utf-8
# See: <http://docs.python.org/distutils/introduction.html>
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
VERSION = eval(filter(lambda _:_.startswith("VERSION"),
file("src/cuisine.py").readlines())[0].split("=")[1])
setup(
name = "cuisine",
version = VERSION,
description = "Chef-like functionality for Fabric",
author = "Sébastien Pierre",
author_email = "sebastien.pierre@gmail.com",
url = "http://github.com/sebastien/cuisine",
download_url = "https://github.com/sebastien/cuisine/tarball/%s" % (VERSION),
keywords = ["fabric", "chef", "ssh",],
install_requires = ["fabric",],
package_dir = {"":"src"},
py_modules = ["cuisine"],
classifiers = [
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Utilities"
],
)
# EOF - vim: ts=4 sw=4 noet