Skip to content

Commit 38fb0d4

Browse files
committed
Packaging tweak.
1 parent 7e4c73b commit 38fb0d4

File tree

3 files changed

+8
-29
lines changed

3 files changed

+8
-29
lines changed

CHANGES.rst

+5-10
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,55 @@
1-
==========
21
Change Log
32
==========
43

5-
-----------------
4+
1.0.14
5+
------
6+
7+
* Re-licensed under BSD.
8+
69
1.0.12 and 1.0.13
710
-----------------
811

912
* Forget that these ever existed.
1013

11-
------
1214
1.0.11
1315
------
1416

1517
* Bug fix of a bug fix for regions config. (jcartmell)
1618

17-
------
1819
1.0.10
1920
------
2021

2122
* Bug fix regarding regions and when they are sent. (jcartmell)
2223

23-
-----
2424
1.0.9
2525
-----
2626

2727
* Various fixes to RateRequest() FedEx API call. (jcartmell)
2828
* Added this changelog. (gtaylor)
2929

30-
-----
3130
1.0.8
3231
-----
3332

3433
* Fixed some problems with the unit tests. (gtaylor)
3534

36-
-----
3735
1.0.7
3836
-----
3937

4038
* Fixed a bug with international rate request example. (gtaylor)
4139

42-
-----
4340
1.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-
-----
5147
1.0.4
5248
-----
5349

5450
* Removal of unecessary files. (gtaylor)
5551
* Documentation improvements. (gtaylor)
5652

57-
-----
5853
1.0.3
5954
-----
6055

MANIFEST.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
LICENSE.txt
1+
include LICENSE.txt
2+
include README.rst
23
recursive-include examples *.txt *.py
34
recursive-include docs *
45
recursive-include fedex/wsdl *

setup.py

+1-18
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,4 @@
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-
"""
192
from distutils.core import setup
203
import fedex
214

@@ -45,7 +28,7 @@
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'],

0 commit comments

Comments
 (0)