Skip to content

Commit

Permalink
kill paver. too broken.
Browse files Browse the repository at this point in the history
  • Loading branch information
teepark committed Dec 13, 2013
1 parent df69eba commit 337f7a4
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 73 deletions.
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -3,7 +3,6 @@
.*.swp
.*.swo
greenhouse.egg-info/*
MANIFEST.in
build/*
docs/build/*
dist/*
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -0,0 +1 @@
include setup.py
67 changes: 0 additions & 67 deletions pavement.py

This file was deleted.

Binary file removed paver-minilib.zip
Binary file not shown.
34 changes: 29 additions & 5 deletions setup.py
@@ -1,7 +1,31 @@
#!/usr/bin/env python
# vim: fileencoding=utf8:et:sw=4:ts=8:sts=4

import os
if os.path.exists("paver-minilib.zip"):
import sys
sys.path.insert(0, "paver-minilib.zip")
from setuptools import setup


VERSION = (2, 1, 4, "")

import paver.tasks
paver.tasks.main()
setup(
name="greenhouse",
description="An I/O parallelism library making use of coroutines",
packages=[
"greenhouse",
"greenhouse.io",
"greenhouse.emulation",
"greenhouse.ext"],
version=".".join(filter(None, map(str, VERSION))),
author="Travis Parker",
author_email="travis.parker@gmail.com",
url="http://github.com/teepark/greenhouse",
license="BSD",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python",
],
install_requires=['greenlet'],
)

0 comments on commit 337f7a4

Please sign in to comment.