Skip to content
This repository has been archived by the owner on Nov 1, 2018. It is now read-only.

Commit

Permalink
adding manifest.in
Browse files Browse the repository at this point in the history
  • Loading branch information
trhowe committed Mar 10, 2011
1 parent fc2622e commit 4cdff6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -0,0 +1 @@
include *.rst *.txt
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -3,14 +3,14 @@
from setuptools import setup, find_packages

here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
README = open('README.rst').read()
CHANGES = open('CHANGES.txt').read()

requires = ['pycassa', 'thrift05', 'setuptools']
tests_requires = requires + ['nose', 'mock']

setup(name='agamemnon',
version='0.1.0',
version='0.1.1',
description='A graph database built on top of cassandra',
long_description=README + "\n\n" + CHANGES,
classifiers=[
Expand Down

0 comments on commit 4cdff6c

Please sign in to comment.