Skip to content

Commit 0b99cb7

Browse files
author
Greg Taylor
committed
Change maintainer email and add printers module to packages.
1 parent 77fbfb4 commit 0b99cb7

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

setup.py

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -31,48 +31,48 @@
3131
'Natural Language :: English',
3232
'Operating System :: OS Independent',
3333
'Programming Language :: Python',
34-
'Topic :: Software Development :: Libraries :: Python Modules'
34+
'Topic :: Software Development :: Libraries :: Python Modules'
3535
]
3636

3737
KEYWORDS = 'fedex soap suds wrapper'
3838

3939
class zip_docs(Command):
4040
description = "Zip the docs directory in preparation for uploading to PyPi."
4141
user_options = []
42-
42+
4343
def initialize_options(self):
4444
pass
45-
45+
4646
def finalize_options(self):
4747
pass
48-
48+
4949
def run(self):
5050
filename = "python-fedex-docs-%s.zip" % fedex.VERSION
5151
file = open(filename, 'w')
5252
zfile = ZipFile(file, 'w', ZIP_STORED)
53-
53+
5454
for file in os.listdir('docs'):
5555
if file != '.svn':
5656
zfile.write(os.path.join('docs', file),
57-
arcname=file)
57+
arcname=file)
5858
zfile.close()
59-
6059

61-
setup(name = 'fedex',
62-
version = fedex.VERSION,
63-
description = 'Fedex Web Services API wrapper.',
64-
long_description = LONG_DESCRIPTION,
65-
author = 'Gregory Taylor',
66-
author_email = 'gtaylor@l11solutions.com',
67-
url = 'http://code.google.com/p/python-fedex/',
68-
download_url = 'http://pypi.python.org/pypi/fedex/',
69-
packages = ['fedex', 'fedex.services'],
70-
package_dir= {'fedex': 'fedex'},
71-
package_data = {'fedex': ['wsdl/*.wsdl', 'wsdl/test_server_wsdl/*.wsdl']},
72-
platforms = ['Platform Independent'],
73-
license = 'GPLv3',
74-
classifiers = CLASSIFIERS,
75-
keywords = KEYWORDS,
76-
requires = ['suds'],
77-
cmdclass = {'zip_docs': zip_docs},
60+
61+
setup(name='fedex',
62+
version=fedex.VERSION,
63+
description='Fedex Web Services API wrapper.',
64+
long_description=LONG_DESCRIPTION,
65+
author='Gregory Taylor',
66+
author_email='snagglepants@gmail.com.com',
67+
url='http://code.google.com/p/python-fedex/',
68+
download_url='http://pypi.python.org/pypi/fedex/',
69+
packages=['fedex', 'fedex.services', 'fedex.printers'],
70+
package_dir={'fedex': 'fedex'},
71+
package_data={'fedex': ['wsdl/*.wsdl', 'wsdl/test_server_wsdl/*.wsdl']},
72+
platforms=['Platform Independent'],
73+
license='GPLv3',
74+
classifiers=CLASSIFIERS,
75+
keywords=KEYWORDS,
76+
requires=['suds'],
77+
cmdclass={'zip_docs': zip_docs},
7878
)

0 commit comments

Comments
 (0)