-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from eventable/pypi
update setup.py for pypi
- Loading branch information
Showing
1 changed file
with
9 additions
and
3 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 |
---|---|---|
|
@@ -15,7 +15,13 @@ | |
Recent changes | ||
-------------- | ||
- Pickling/deepcopy hotfix | ||
- Make ics_diff.py work with Python 3 | ||
- Huge changes to text encoding for Python 2/3 compatibility | ||
- Autogenerate DTSTAMP if not provided | ||
- Fix getrruleset() for Python 3 and in the case that addRDate=True | ||
- Update vCard property validation to match specifications | ||
- Handle offset-naive and offset-aware datetimes in recurrence rules | ||
- Improved documentation for multi-value properties | ||
For older changes, see | ||
- http://eventable.github.io/vobject/#release-history or | ||
|
@@ -27,15 +33,15 @@ | |
doclines = (__doc__ or '').splitlines() | ||
|
||
setup(name = "vobject", | ||
version = "0.9.4.1", | ||
version = "0.9.5", | ||
author = "Jeffrey Harris", | ||
author_email = "[email protected]", | ||
maintainer = "Sameen Karim", | ||
maintainer_email="[email protected]", | ||
license = "Apache", | ||
zip_safe = True, | ||
url = "http://eventable.github.io/vobject/", | ||
download_url = 'https://github.com/eventable/vobject/tarball/0.9.4.1', | ||
download_url = 'https://github.com/eventable/vobject/tarball/0.9.5', | ||
bugtrack_url = "https://github.com/eventable/vobject/issues", | ||
entry_points = { | ||
'console_scripts': [ | ||
|