Skip to content

Commit

Permalink
Pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
yueyoum committed Jun 21, 2013
1 parent 4f87748 commit ea1faa7
Show file tree
Hide file tree
Showing 6 changed files with 96 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
@@ -0,0 +1,3 @@
2012-06-21

* Version 0.1.0, First release
27 changes: 27 additions & 0 deletions LICENSE
@@ -0,0 +1,27 @@
Copyright (c) <2013>, <Wang Chao>
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. All advertising materials mentioning features or use of this software
must display the following acknowledgement:
This product includes software developed by the <organization>.
4. Neither the name of the <organization> nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
13 changes: 13 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,13 @@
include LICENSE
include MANIFEST.in
include ChangeLog
include README.txt
recursive-include siteuser/templates/siteuser *
recursive-include siteuser/upload_avatar/static *
recursive-include siteuser/users/static *
recursive-include example *
recursive-exclude example/avatar *
recursive-exclude example/static *
recursive-exclude * *.pyc
exclude example/test.db
exclude example/example/local_settings.py
22 changes: 22 additions & 0 deletions README.txt
@@ -0,0 +1,22 @@
Django-SiteUser

A Django app for maintain accounts.

* Register
* Login
* Third Accounts Login
* Change Password
* Reset Password
* Upload Avatar
* User Notification


Author: Wang Chao

Author_email: yueyoum@gmail.com

Usage:

See README.md & example

github: https://github.com/yueyoum/django-siteuser
26 changes: 26 additions & 0 deletions setup.py
@@ -0,0 +1,26 @@
from distutils.core import setup
from setuptools import find_packages

from siteuser import VERSION


setup(
name='django-siteuser',
version = VERSION,
license = 'BSD',
description = 'A Django APP for Universal Maintain Accounts',
long_description = open('README.txt').read(),
author = 'Wang Chao',
author_email = 'yueyoum@gmail.com',
url = 'https://github.com/yueyoum/django-siteuser',
keywords = 'django, account, login, register, social, avatar',
packages = find_packages(exclude=('example',)),
classifiers = [
'Development Status :: 4 - Beta',
'Topic :: Internet',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)

5 changes: 5 additions & 0 deletions siteuser/__init__.py
@@ -1,4 +1,9 @@
# -*- coding: utf-8 -*-

import os

version_info = (0, 1, 0)
VERSION = __version__ = '.'.join( map(str, version_info) )

CURRENT_PATH = os.path.dirname(os.path.realpath(__file__))
SITEUSER_TEMPLATE = os.path.join(CURRENT_PATH, 'templates')

0 comments on commit ea1faa7

Please sign in to comment.