Mercurial > repos > cathywise > truststore_import
diff PythonTrustStore-0.2.0/setup.py @ 1:ff126718bdc5
Uploaded
author | cathywise |
---|---|
date | Wed, 11 Dec 2013 21:05:12 -0500 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/PythonTrustStore-0.2.0/setup.py Wed Dec 11 21:05:12 2013 -0500 @@ -0,0 +1,26 @@ +# import os +from setuptools import setup, find_packages + +install_requires = [ + "requests <= 0.14.2", + "requests_oauth2", + "xmltodict", + "boto >= 2.5.0", + "simplejson", + "passlib" +] + +setup( + name='PythonTrustStore', + version='0.2.0', + author='Catherine Wise', + author_email='catherine.wise@csiro.au', + packages=find_packages(), + scripts=['bin/truststore-cli.py'], + url='http://truststore.csiro.au', + license='LICENSE.txt', + description='TrustStore Python library and command line client.', + package_data={'': ["certs.conf"]}, + long_description=open('README.txt').read(), + install_requires=install_requires +)