Skip to content
This repository has been archived by the owner on Feb 7, 2019. It is now read-only.

Commit

Permalink
Fixed setup.py script in order to add versions.utils as well; Exclude…
Browse files Browse the repository at this point in the history
…d pyc and pyo files from source distribution
  • Loading branch information
maennel committed Sep 15, 2014
1 parent 7db2ce4 commit a266c93
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
include LICENSE*
include NOTICE*
global-exclude *.py[c|o]
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"""

setup(name='CleanerVersion',
version='1.1.1',
version='1.1.2',
description='A versioning solution for relational data models',
long_description='CleanerVersion is a solution that allows you to read and write multiple versions of an entry '
'to and from your relational database. It allows to keep track of modifications on an object '
Expand All @@ -32,7 +32,7 @@
author='Manuel Jeckelmann, Jean-Christophe Zulian, Brian King, Andrea Marcacci',
author_email='engineering.sophia@swisscom.com',
license='Apache License 2.0',
packages=['versions'],
packages=['versions', 'versions.util'],
url='https://github.com/swisscom/cleanerversion',
install_requires=['django'],
classifiers=[
Expand Down

0 comments on commit a266c93

Please sign in to comment.