File tree 3 files changed +8
-29
lines changed
3 files changed +8
-29
lines changed Original file line number Diff line number Diff line change 1
- ==========
2
1
Change Log
3
2
==========
4
3
5
- -----------------
4
+ 1.0.14
5
+ ------
6
+
7
+ * Re-licensed under BSD.
8
+
6
9
1.0.12 and 1.0.13
7
10
-----------------
8
11
9
12
* Forget that these ever existed.
10
13
11
- ------
12
14
1.0.11
13
15
------
14
16
15
17
* Bug fix of a bug fix for regions config. (jcartmell)
16
18
17
- ------
18
19
1.0.10
19
20
------
20
21
21
22
* Bug fix regarding regions and when they are sent. (jcartmell)
22
23
23
- -----
24
24
1.0.9
25
25
-----
26
26
27
27
* Various fixes to RateRequest() FedEx API call. (jcartmell)
28
28
* Added this changelog. (gtaylor)
29
29
30
- -----
31
30
1.0.8
32
31
-----
33
32
34
33
* Fixed some problems with the unit tests. (gtaylor)
35
34
36
- -----
37
35
1.0.7
38
36
-----
39
37
40
38
* Fixed a bug with international rate request example. (gtaylor)
41
39
42
- -----
43
40
1.0.6
44
41
-----
45
42
46
43
* Lots of documentation improvements. (gtaylor)
47
44
* FedEx RateRequest call implemented. (yahtib)
48
45
* FedEx Postal Inquiry call implemented. (yahtib)
49
46
50
- -----
51
47
1.0.4
52
48
-----
53
49
54
50
* Removal of unecessary files. (gtaylor)
55
51
* Documentation improvements. (gtaylor)
56
52
57
- -----
58
53
1.0.3
59
54
-----
60
55
Original file line number Diff line number Diff line change 1
- LICENSE.txt
1
+ include LICENSE.txt
2
+ include README.rst
2
3
recursive-include examples *.txt *.py
3
4
recursive-include docs *
4
5
recursive-include fedex/wsdl *
Original file line number Diff line number Diff line change 1
1
#!/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
- """
19
2
from distutils .core import setup
20
3
import fedex
21
4
45
28
package_dir = {'fedex' : 'fedex' },
46
29
package_data = {'fedex' : ['wsdl/*.wsdl' , 'wsdl/test_server_wsdl/*.wsdl' ]},
47
30
platforms = ['Platform Independent' ],
48
- license = 'GPLv3 ' ,
31
+ license = 'BSD ' ,
49
32
classifiers = CLASSIFIERS ,
50
33
keywords = KEYWORDS ,
51
34
requires = ['suds' ],
You can’t perform that action at this time.
0 commit comments