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 11# Set the version
2- __version__ = '1.0.0 '
2+ __version__ = '1.0.1 '
33
44default_app_config = 'pyas2.apps.Pyas2Config'
55
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 11# -*- coding: utf-8 -*-
22import os
3- from setuptools import setup , find_packages
3+ from setuptools import setup
44
55root = os .path .abspath (os .path .dirname (__file__ ))
66
2424
2525setup (
2626 name = 'django-pyas2' ,
27- version = '1.0.0 ' ,
27+ version = '1.0.1 ' ,
2828 description = 'A Django app for transferring files using AS2 protocol' ,
2929 license = "GNU GPL v3.0" ,
3030 long_description = README ,
3131 author = 'Abhishek Ram' ,
32323333 url = 'http://github.com/abhishek-ram/django-pyas2' ,
34- packages = find_packages () ,
34+ packages = [ 'pyas2' ] ,
3535 zip_safe = False ,
3636 include_package_data = True ,
3737 classifiers = [
You can’t perform that action at this time.
0 commit comments