Skip to content

Commit

Permalink
fix setup with requirement.txt file
Browse files Browse the repository at this point in the history
  • Loading branch information
areski committed Feb 6, 2014
1 parent b7e15d6 commit caa3903
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ Changelog
=========


0.5.5 (2014-02-06)
-------------------

* fix setup with requirement.txt file


0.5.4 (2014-02-06)
-------------------

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ global-exclude *.pyc

include README.rst
include MIT-LICENSE.txt
include requirements.txt

recursive-include admin_tools_stats *
recursive-include docs *
2 changes: 1 addition & 1 deletion admin_tools_stats/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# Arezqui Belaid <[email protected]>
#

VERSION = (0, 5, 4, "final", 0) # edit also docs/source/conf.py
VERSION = (0, 5, 5, "final", 0) # edit also docs/source/conf.py


def get_version():
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
import admin_tools_stats


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

README = read('README.rst')
def read(*parts):
return open(os.path.join(os.path.dirname(__file__), *parts)).read()


def parse_requirements(file_name):
Expand Down

0 comments on commit caa3903

Please sign in to comment.