-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1.01 KB
/
Copy pathsetup.py
File metadata and controls
32 lines (29 loc) · 1.01 KB
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
#!/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
setup(
name = "cooker",
version = '0.1.0',
description = "Ansible-like functionality with Fabric",
author = "Kheshav Sewnundun",
author_email = "kheshavsewnundun@gmail.com",
url = "http://github.com/",
keywords = ["fabric", "ansible", "ssh",],
install_requires = ["fabric","ansible",],
package_dir = {"":"src"},
py_modules = ["cooker"],
license = "BSD License",
classifiers = [
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Utilities"
],
)