Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
Prepare initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
labisso committed Apr 9, 2012
1 parent 503c809 commit 2acccf0
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .gitignore
@@ -0,0 +1,20 @@
*.kpf
*.pyc
*.swp
*.*.swp
.*.*.swo
*.log
*.pid
*.komodo*
build
dist
*.egg-info
.pydevproject
.project
/.settings
/.metadata
dropin.cache
eggs/
parts/
develop-eggs/
.idea
1 change: 1 addition & 0 deletions README
18 changes: 16 additions & 2 deletions setup.py
@@ -1,9 +1,21 @@
#!/usr/bin/env python

import os
import codecs

VERSION = "0.1.0"

if os.path.exists("README.rst"):
long_description = codecs.open('README.rst', "r", "utf-8").read()
else:
long_description = "See http://github.com/nimbusproject/kazoo"


setupdict = {
'name' : 'kazoo',
'version' : '0.1',
'version' : VERSION,
'description' : 'ZooKeeper client that supports async frameworks',
'long_description' : long_description,
'license' : 'Apache 2.0',
'author' : 'Nimbus team',
'author_email' : 'nimbus@mcs.anl.gov',
Expand All @@ -17,7 +29,9 @@
"Topic :: Communications",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Networking",
"Topic :: Software Development :: Libraries :: Python Modules"],
"Topic :: Software Development :: Libraries :: Python Modules",],
"url" : "https://github.com/nimbusproject/kazoo",
"download_url" : "http://www.nimbusproject.org/downloads/kazoo-%s.tar.gz" % VERSION,
}

from setuptools import setup, find_packages
Expand Down

0 comments on commit 2acccf0

Please sign in to comment.