This repository was archived by the owner on Feb 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed setup.py script in order to add versions.utils as well; Exclude…
…d pyc and pyo files from source distribution
- Loading branch information
Showing
2 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
include LICENSE* | ||
include NOTICE* | ||
global-exclude *.py[c|o] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[email protected]', | ||
license='Apache License 2.0', | ||
packages=['versions'], | ||
packages=['versions', 'versions.util'], | ||
url='https://github.com/swisscom/cleanerversion', | ||
install_requires=['django'], | ||
classifiers=[ | ||
|