Skip to content

Commit

Permalink
Working setup.py, and single character fix to kasey's javascript.
Browse files Browse the repository at this point in the history
  • Loading branch information
issackelly committed Mar 25, 2011
1 parent 1175bf6 commit 3f40752
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,9 @@ include LICENSE.txt
include README.md
include AUTHORS.txt
recursive-include servee *
recursive-include servee/frontendadmin/templates *
recursive-include servee/frontendadmin/static *
recursive-include servee/wysiwyg *
recursive-include servee/wysiwyg/tinymce/static *
recursive-include servee/wysiwyg/tinymce/templates *
recursive-include docs *
5 changes: 3 additions & 2 deletions servee/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
VERSION = (0, 6, 0, "a", 1) # following PEP 386
DEV_N = None

DEV_N = "5"

# cribbed from pinax
# https://github.com/pinax/pinax/raw/master/LICENSE
def get_version():
version = "%s.%s" % (VERSION[0], VERSION[1])
if VERSION[2]:
Expand Down
2 changes: 1 addition & 1 deletion servee/frontendadmin/templates/servee/change_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@

if ($(window).scrollTop() <= $(".scrollidentifier").offset({ scroll: false }).top){
$(".submit-row").css("position", "relative");
$(".submit-row").css("bottom", $(".scrollidentifier").offset();
$(".submit-row").css("bottom", $(".scrollidentifier").offset());
}
});
});
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,14 @@ def find_package_data(
packages = find_packages(exclude=["example_project*",]),
package_data = find_package_data('servee',only_in_packages=False),
install_requires = [
'Django>1.2.5',
'Django==1.3',
'django-uni-form>=0.7',
'django-classy-tags',
],
#tests_require = [
# 'Django', 'django-classy-tags', 'django-uni-form'
#],
include_package_data=True,
classifiers = [
'Development Status :: 3 - Alpha',
'Framework :: Django',
Expand Down

0 comments on commit 3f40752

Please sign in to comment.