-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from setuptools import setup
import sys
import os
sys.path.insert(0, os.path.join(os.path.dirname(__file__),
'hellosign_python_sdk'))
def readme():
with open('README.md') as f:
return f.read()
setup(name='hellosign-python-sdk',
version='0.3.2',
description="An API wrapper written in Python to interact with \
HelloSign's API (http://www.hellosign.com)",
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
],
keywords='hellosign python sdk',
url='https://github.com/minhdanh/hellosign-python-sdk',
author='Minh Danh',
author_email='[email protected]',
license='MIT',
packages=[
'hellosign_python_sdk',
'hellosign_python_sdk.utils',
'hellosign_python_sdk.resource',
],
install_requires=[
'requests'
],
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False)