forked from django-tastypie/django-tastypie
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2dff249
commit 383a6c8
Showing
6 changed files
with
23 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.9.13-beta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
Django>=1.0.0 | ||
versiontools | ||
Django>=1.3.0 | ||
mimeparse>=0.1.3 | ||
python-dateutil>=2.1 | ||
lxml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,9 +7,11 @@ | |
use_setuptools() | ||
from setuptools import setup | ||
|
||
import versiontools as vt | ||
|
||
setup( | ||
name='django-tastypie', | ||
version='0.9.13-beta', | ||
version=vt.load_version('VERSION'), | ||
description='A flexible & capable API layer for Django.', | ||
author='Daniel Lindsley', | ||
author_email='[email protected]', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
import os | ||
import versiontools as vt | ||
|
||
|
||
VERSION_FILE = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'VERSION') | ||
|
||
|
||
__author__ = 'Daniel Lindsley, Cody Soyland, Matt Croydon, Josh Bohde & Issac Kelly' | ||
__version__ = (0, 9, 13, 'beta') | ||
__version__ = vt.build_version('your_package_name_here', vt.load_version(VERSION_FILE)) |