Skip to content

Commit

Permalink
Merge pull request #20 from ugurcan377/master
Browse files Browse the repository at this point in the history
Issue #14 fix
  • Loading branch information
plq committed Dec 31, 2012
2 parents 0652d28 + a3a34bf commit 4e1a9b1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
recursive-include spynepi/const/template/*
include CHANGELOG
recursive-include spynepi/const/template *.html
include CHANGELOG.rst
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,20 @@
v = open(os.path.join(os.path.dirname(__file__), PROJECT_NAME, '__init__.py'), 'r')
VERSION = re.match(r".*__version__ = '(.*?)'", v.read(), re.S).group(1)

LONG_DESC = ""

try:
os.stat('CHANGELOG.rst')
LONG_DESC = open('CHANGELOG.rst', 'r').read()
except OSError:
pass

setup(
name=PROJECT_NAME,
packages=find_packages(),
version=VERSION,
description="This is a caching PyPI implementation that uses spyne",
long_description=LONG_DESC,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
Expand All @@ -30,7 +39,7 @@
license='GPL',

install_requires=[
"spyne>=2.10", "sqlalchemy<0.8", "werkzeug", "twisted",
"spyne>=2.9","sqlalchemy<0.8", "werkzeug", "twisted",
],
include_package_data=True,
entry_points = {
Expand Down

0 comments on commit 4e1a9b1

Please sign in to comment.