api-client-python/setup.py

14 lines
316 B
Python
Raw Normal View History

2014-09-12 11:08:18 +04:00
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'
)