1
|
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 )
|