From 80ec435a8e8f9f231019bb7c67f4149adcba53d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=BE=D0=BD=D1=81=D1=82=D0=B0=D0=BD=D1=82=D0=B8?= =?UTF-8?q?=D0=BD=20=D0=A7=D0=B5=D1=80=D0=BD=D1=8B=D1=88=D0=BA=D0=BE=D0=B2?= Date: Fri, 12 Sep 2014 13:08:18 +0600 Subject: [PATCH] add setup.py --- setup.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..6b62553 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +from os.path import join, dirname + +from setuptools import setup + + +setup( + name='api-client-python', + version=0.1, + long_description=open(join(dirname(__file__), 'README.md')).read(), + author='Intarocrm', + package_data={}, + install_requires=[u'requests', ], + url='https://github.com/intarocrm/api-client-python.git' +) \ No newline at end of file