Skip to content

Commit bab67d2

Browse files
committed
Clean up package information
1 parent 9d7efaa commit bab67d2

File tree

4 files changed

+19
-34
lines changed

4 files changed

+19
-34
lines changed

.gitignore

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
*.log
2-
*.pot
3-
local_settings.py
4-
settings_local.py
51
*.py[co]
62

73
# Packages
@@ -17,24 +13,3 @@ develop-eggs
1713

1814
# Installer logs
1915
pip-log.txt
20-
21-
# Unit test / coverage reports
22-
.coverage
23-
.tox
24-
*.pydevproject
25-
.project
26-
.metadata
27-
bin/**
28-
tmp/**
29-
tmp/**/*
30-
*.tmp
31-
*.bak
32-
*.swp
33-
*~.nib
34-
local.properties
35-
.classpath
36-
.settings/
37-
.loadpath
38-
39-
# CDT-specific
40-
.cproject

LICENSE.txt renamed to LICENSE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) City Live nv and individual contributors.
1+
Copyright (c) VikingCo NV and individual contributors.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,
@@ -11,7 +11,7 @@ are permitted provided that the following conditions are met:
1111
notice, this list of conditions and the following disclaimer in the
1212
documentation and/or other materials provided with the distribution.
1313

14-
3. Neither the name of City Live nor the names of its contributors may be used
14+
3. Neither the name of VikingCo nor the names of its contributors may be used
1515
to endorse or promote products derived from this software without
1616
specific prior written permission.
1717

@@ -24,4 +24,4 @@ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2424
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
2525
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2626
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.rst

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1-
####################
2-
django-keyvaluestore
3-
####################
1+
===================================
2+
A simple key-value-store for Django
3+
===================================
4+
5+
django-keyvaluestore implements a very simple database-based key-value store for Django.
6+
7+
Usage
8+
=====
9+
The interface is straightforward::
10+
11+
from keyvaluestore import get_value_for_key, set_key_value
12+
set_key_value('foo', 'bar')
13+
get_value_for_key('foo')

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
setup(
66
name="django-keyvaluestore",
77
version=keyvaluestore.__version__,
8-
url='https://github.com/citylive/django-keyvaluestore',
8+
url='https://github.com/vikingco/django-keyvaluestore',
99
license='BSD',
1010
description="A Key-Value store for Django",
1111
long_description=open('README.rst', 'r').read(),
12-
author='Ingo Berben, City Live nv',
12+
author='VikingCo NV',
1313
packages=['keyvaluestore'],
1414
zip_safe=False, # Don't create egg files, Django cannot find templates in egg files.
1515
include_package_data=True,
@@ -20,4 +20,4 @@
2020
'Environment :: Web Environment',
2121
'Framework :: Django',
2222
],
23-
)
23+
)

0 commit comments

Comments
 (0)