Mercurial > repos > cathywise > truststore_import
comparison PythonTrustStore-0.2.0/setup.py @ 1:ff126718bdc5
Uploaded
author | cathywise |
---|---|
date | Wed, 11 Dec 2013 21:05:12 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:22cc897d85c5 | 1:ff126718bdc5 |
---|---|
1 # import os | |
2 from setuptools import setup, find_packages | |
3 | |
4 install_requires = [ | |
5 "requests <= 0.14.2", | |
6 "requests_oauth2", | |
7 "xmltodict", | |
8 "boto >= 2.5.0", | |
9 "simplejson", | |
10 "passlib" | |
11 ] | |
12 | |
13 setup( | |
14 name='PythonTrustStore', | |
15 version='0.2.0', | |
16 author='Catherine Wise', | |
17 author_email='catherine.wise@csiro.au', | |
18 packages=find_packages(), | |
19 scripts=['bin/truststore-cli.py'], | |
20 url='http://truststore.csiro.au', | |
21 license='LICENSE.txt', | |
22 description='TrustStore Python library and command line client.', | |
23 package_data={'': ["certs.conf"]}, | |
24 long_description=open('README.txt').read(), | |
25 install_requires=install_requires | |
26 ) |