Skip to content

Commit

Permalink
prepare 0.1; initial
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Feb 14, 2015
0 parents commit 8ac574e
Show file tree
Hide file tree
Showing 41 changed files with 2,152 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
*.py[cod]
.hgignore~
.gitignore~
.hg/
.hgtags
.tox/
.travis.yml~

MANIFEST.in~
tmp/
.zip
/codebin/
/release/
/forks/
/deploy/
/examples/db/example.db
/examples/tmp/
/examples/logs/
/examples/media/cache/
/examples/static/
/builddocs/
/builddocs.zip
/build/
/dist/
/src/django_nine.egg-info
/examples/simple/local_settings.py
/examples/simple/db.sqlite3
27 changes: 27 additions & 0 deletions .hgignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
syntax: regexp
\.pyc$
\.hgignore~
\.gitignore~
\.git/
\.tox/
\.travis\.yml~

^MANIFEST\.in~
^tmp/
\.zip
^codebin/
^release/
^deploy/
^forks/
^examples/db/example\.db
^examples/tmp/
^examples/logs/django\.log
^examples/logs/nine\.log
^examples/media/cache/
^examples/static/
^builddocs/
^builddocs.zip
^build/
^dist/
^src/django_nine\.egg-info
^examples/simple/db.sqlite3
22 changes: 22 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Release history and notes
=====================================
`Sequence based identifiers
<http://en.wikipedia.org/wiki/Software_versioning#Sequence-based_identifiers>`_
are used for versioning (schema follows below):

.. code-block:: none
major.minor[.revision]
- It's always safe to upgrade within the same minor version (for example, from
0.3 to 0.3.2).
- Minor version changes might be backwards incompatible. Read the
release notes carefully before upgrading (for example, when upgrading from
0.3.2 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.1
-------------------------------------
2015-02-14

- Initial release with `versions` and `user` modules.
339 changes: 339 additions & 0 deletions LICENSE_GPL2.0.txt

Large diffs are not rendered by default.

502 changes: 502 additions & 0 deletions LICENSE_LGPL_2.1.txt

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include README.rst
include LICENSE_GPL2.0.txt
include LICENSE_LGPL_2.1.txt
include CHANGELOG.rst
58 changes: 58 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
===============================================
django-nine
===============================================
`django-nine` - compatibility library for Django.

Installation
===============================================
1. Install latest stable version from PyPI:

.. code-block:: none
$ pip install django-nine
Or latest stable version from GitHub:

.. code-block:: none
$ pip install -e git+https://github.com/barseghyanartur/django-nine@stable#egg=django-nine
Or latest stable version from BitBucket:

.. code-block:: none
$ pip install -e hg+https://bitbucket.org/barseghyanartur/django-nine@stable#egg=django-nine
Usage
===============================================
For example, if Django version installed in your environment is 1.7.4, then
the following would be true.

.. code-block:: python
from nine import versions
versions.DJANGO_1_7 # True
versions.DJANGO_LTE_1_7 # True
versions.DJANGO_GTE_1_7 # True
versions.DJANGO_GTE_1_8 # False
versions.DJANGO_GTE_1_4 # True
versions.DJANGO_LTE_1_6 # False
Or you could safely import the user model as follows:

.. code-block:: python
from nine.user import User
License
===============================================
GPL 2.0/LGPL 2.1

Support
===============================================
For any issues contact me at the e-mail given in the `Author` section.

Author
===============================================
Artur Barseghyan <artur.barseghyan@gmail.com>
21 changes: 21 additions & 0 deletions TODOS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
===============================================
TODOs
===============================================
Based on the MoSCoW principle. Must haves and should haves are planned to be
worked on.

* Features/issues marked with plus (+) are implemented/solved.
* Features/issues marked with minus (-) are yet to be implemented.

Must haves
===============================================
- Tests.

Should haves
===============================================

Could haves
===============================================

Would haves
===============================================

0 comments on commit 8ac574e

Please sign in to comment.