From a266c9383826aaf6b3f2113325f7fc23bccf9d93 Mon Sep 17 00:00:00 2001 From: Manuel Jeckelmann Date: Mon, 15 Sep 2014 20:02:50 +0200 Subject: [PATCH] Fixed setup.py script in order to add versions.utils as well; Excluded pyc and pyo files from source distribution --- MANIFEST.in | 1 + setup.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index eadfb08..d77ff5b 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include LICENSE* include NOTICE* +global-exclude *.py[c|o] diff --git a/setup.py b/setup.py index ae6d2f2..60f4001 100644 --- a/setup.py +++ b/setup.py @@ -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 ' @@ -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=[