-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
abhishekram
committed
May 2, 2019
1 parent
41e0301
commit 45a11e7
Showing
6 changed files
with
29 additions
and
9 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Release History | ||
=============== | ||
|
||
1.0.1 - 2018-05-02 | ||
------------------ | ||
|
||
* Use current date as sub-folder in message store | ||
* Use password widget for `key_pass` field of PrivateKey | ||
* Better rendering of headers and payload in messages | ||
* Include templates in the distribution | ||
|
||
1.0.0 - 2018-05-01 | ||
------------------ | ||
|
||
* Initial release. |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
include LICENSE | ||
include README.* | ||
recursive-include pyas2/static * | ||
recursive-include pyas2/templates * | ||
recursive-include pyas2/templatetags *.py | ||
recursive-include pyas2/management *.py | ||
recursive-include pyas2/migrations *.py | ||
recursive-include pyas2 *.py |
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,5 +1,5 @@ | ||
# Set the version | ||
__version__ = '1.0.0' | ||
__version__ = '1.0.1' | ||
|
||
default_app_config = 'pyas2.apps.Pyas2Config' | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[bdist_wheel] | ||
universal = 1 |
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,6 +1,6 @@ | ||
# -*- coding: utf-8 -*- | ||
import os | ||
from setuptools import setup, find_packages | ||
from setuptools import setup | ||
|
||
root = os.path.abspath(os.path.dirname(__file__)) | ||
|
||
|
@@ -24,14 +24,14 @@ | |
|
||
setup( | ||
name='django-pyas2', | ||
version='1.0.0', | ||
version='1.0.1', | ||
description='A Django app for transferring files using AS2 protocol', | ||
license="GNU GPL v3.0", | ||
long_description=README, | ||
author='Abhishek Ram', | ||
author_email='[email protected]', | ||
url='http://github.com/abhishek-ram/django-pyas2', | ||
packages=find_packages(), | ||
packages=['pyas2'], | ||
zip_safe=False, | ||
include_package_data=True, | ||
classifiers=[ | ||
|