File tree Expand file tree Collapse file tree 3 files changed +8
-29
lines changed Expand file tree Collapse file tree 3 files changed +8
-29
lines changed Original file line number Diff line number Diff line change 1- ==========
21Change Log
32==========
43
5- -----------------
4+ 1.0.14
5+ ------
6+
7+ * Re-licensed under BSD.
8+
691.0.12 and 1.0.13
710-----------------
811
912* Forget that these ever existed.
1013
11- ------
12141.0.11
1315------
1416
1517* Bug fix of a bug fix for regions config. (jcartmell)
1618
17- ------
18191.0.10
1920------
2021
2122* Bug fix regarding regions and when they are sent. (jcartmell)
2223
23- -----
24241.0.9
2525-----
2626
2727* Various fixes to RateRequest() FedEx API call. (jcartmell)
2828* Added this changelog. (gtaylor)
2929
30- -----
31301.0.8
3231-----
3332
3433* Fixed some problems with the unit tests. (gtaylor)
3534
36- -----
37351.0.7
3836-----
3937
4038* Fixed a bug with international rate request example. (gtaylor)
4139
42- -----
43401.0.6
4441-----
4542
4643* Lots of documentation improvements. (gtaylor)
4744* FedEx RateRequest call implemented. (yahtib)
4845* FedEx Postal Inquiry call implemented. (yahtib)
4946
50- -----
51471.0.4
5248-----
5349
5450* Removal of unecessary files. (gtaylor)
5551* Documentation improvements. (gtaylor)
5652
57- -----
58531.0.3
5954-----
6055
Original file line number Diff line number Diff line change 1- LICENSE.txt
1+ include LICENSE.txt
2+ include README.rst
23recursive-include examples *.txt *.py
34recursive-include docs *
45recursive-include fedex/wsdl *
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
2- """
3- python-fedex
4- Copyright (C) 2009 Gregory Taylor
5-
6- This program is free software: you can redistribute it and/or modify
7- it under the terms of the GNU General Public License as published by
8- the Free Software Foundation, either version 3 of the License, or
9- (at your option) any later version.
10-
11- This program is distributed in the hope that it will be useful,
12- but WITHOUT ANY WARRANTY; without even the implied warranty of
13- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14- GNU General Public License for more details.
15-
16- You should have received a copy of the GNU General Public License
17- along with this program. If not, see <http://www.gnu.org/licenses/>.
18- """
192from distutils .core import setup
203import fedex
214
4528 package_dir = {'fedex' : 'fedex' },
4629 package_data = {'fedex' : ['wsdl/*.wsdl' , 'wsdl/test_server_wsdl/*.wsdl' ]},
4730 platforms = ['Platform Independent' ],
48- license = 'GPLv3 ' ,
31+ license = 'BSD ' ,
4932 classifiers = CLASSIFIERS ,
5033 keywords = KEYWORDS ,
5134 requires = ['suds' ],
You can’t perform that action at this time.
0 commit comments