-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (33 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
35
36
from distutils.core import setup
name = 'bork'
setup(
name = name,
packages = [name],
version = "0.0.2",
description = "A light weight puppet like library",
author = "Joshua Bonnett",
author_email = "[email protected]",
url = "http://github.com/baycitizen/bork",
download_url = "",
keywords = ["encoding", "i18n", "xml"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = """\
A light weight puppet like library
-------------------------------------
Named after the catch phrase of a certain chef puppet.
After much frustration with puppet's docs not mapping to reality,
The over comfident developer that I am, I decided to write bork.
For simplicty sake it is currently only targeting recent versions
of ubuntu.
Licensed under the Apache Software License.
"""
)