From a12c169aab3f5d4638d9278dc3146fe8f23ee293 Mon Sep 17 00:00:00 2001 From: igor Date: Tue, 10 Sep 2013 20:48:19 +0200 Subject: [PATCH] add setup.py --- setup.py | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100755 setup.py diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..411ecd1 --- /dev/null +++ b/setup.py @@ -0,0 +1,41 @@ +import os +import sys + + +from setuptools import setup, find_packages +from setuptools.command.test import test as TestCommand + +here = os.path.abspath(os.path.dirname(__file__)) +README = open(os.path.join(here, 'README.md')).read() + + + +requires = [ + 'paramiko', + 'protobuf' +] + +test_requires = [ +] + + +setup(name='pyrs', + version='0.1', + description='Using this library you can control your retroshare instance programatically in python.', + long_description=README, + classifiers=[ + "Programming Language :: Python", + "Topic :: Communications :: Chat", + "Topic :: Communications :: File Sharing", + ], + author='drbob', + author_email='', + url='https://github.com/drbob/pyrs', + keywords='retroshare protobuf rpc', + packages=find_packages(), + include_package_data=True, + zip_safe=False, + install_requires=requires, + #extras_require=extras_require, + tests_require=test_requires, + )