Mercurial > repos > cathywise > truststore_import
view 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 source
# 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 )