Skip to content

Commit

Permalink
initial pypi uploading done
Browse files Browse the repository at this point in the history
  • Loading branch information
zhebrak committed Feb 13, 2015
1 parent 94ebc49 commit b9381fc
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
20 changes: 20 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# file GENERATED by distutils, do NOT edit
setup.cfg
setup.py
statsy/__init__.py
statsy/admin.py
statsy/cache.py
statsy/core.py
statsy/descriptors.py
statsy/exceptions.py
statsy/helpers.py
statsy/log.py
statsy/managers.py
statsy/middleware.py
statsy/mixins.py
statsy/models.py
statsy/settings.py
statsy/signals.py
statsy/tasks.py
statsy/urls.py
statsy/views.py
Binary file added dist/django-statsy-0.1dev.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

from distutils.core import setup

import statsy
__version__ = '0.1dev'


setup(
name='django-statsy',
packages=['statsy'],
version=statsy.__version__,
version=__version__,
description='Statistics for Django projects',
author='Alexander Zhebrak',
author_email='fata2ex@gmail.com',
Expand Down
3 changes: 1 addition & 2 deletions statsy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
from statsy.core import Statsy


__version__ = '0.1dev'

_statsy = Statsy()

send = _statsy.send
Expand All @@ -14,3 +12,4 @@
objects = Statsy.objects
groups = Statsy.groups
events = Statsy.events

0 comments on commit b9381fc

Please sign in to comment.