File tree Expand file tree Collapse file tree 6 files changed +29
-9
lines changed Expand file tree Collapse file tree 6 files changed +29
-9
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ Release History
2
+ ===============
3
+
4
+ 1.0.1 - 2018-05-02
5
+ ------------------
6
+
7
+ * Use current date as sub-folder in message store
8
+ * Use password widget for `key_pass ` field of PrivateKey
9
+ * Better rendering of headers and payload in messages
10
+ * Include templates in the distribution
11
+
12
+ 1.0.0 - 2018-05-01
13
+ ------------------
14
+
15
+ * Initial release.
Original file line number Diff line number Diff line change
1
+ include LICENSE
2
+ include README.*
3
+ recursive-include pyas2/static *
4
+ recursive-include pyas2/templates *
5
+ recursive-include pyas2/templatetags *.py
6
+ recursive-include pyas2/management *.py
7
+ recursive-include pyas2/migrations *.py
8
+ recursive-include pyas2 *.py
Original file line number Diff line number Diff line change 1
1
# Set the version
2
- __version__ = '1.0.0 '
2
+ __version__ = '1.0.1 '
3
3
4
4
default_app_config = 'pyas2.apps.Pyas2Config'
5
5
Original file line number Diff line number Diff line change
1
+ [bdist_wheel]
2
+ universal = 1
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
import os
3
- from setuptools import setup , find_packages
3
+ from setuptools import setup
4
4
5
5
root = os .path .abspath (os .path .dirname (__file__ ))
6
6
24
24
25
25
setup (
26
26
name = 'django-pyas2' ,
27
- version = '1.0.0 ' ,
27
+ version = '1.0.1 ' ,
28
28
description = 'A Django app for transferring files using AS2 protocol' ,
29
29
license = "GNU GPL v3.0" ,
30
30
long_description = README ,
31
31
author = 'Abhishek Ram' ,
32
32
author_email = 'abhishek8816@gmail.com' ,
33
33
url = 'http://github.com/abhishek-ram/django-pyas2' ,
34
- packages = find_packages () ,
34
+ packages = [ 'pyas2' ] ,
35
35
zip_safe = False ,
36
36
include_package_data = True ,
37
37
classifiers = [
You can’t perform that action at this time.
0 commit comments