-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
31 lines (28 loc) · 1.09 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
import os
from setuptools import setup
version = os.environ.get('CI_COMMIT_TAG', None)
setup(
name='pyEchosign',
version=version,
packages=['pyEchosign', 'pyEchosign.classes', 'pyEchosign.exceptions', 'pyEchosign.utils'],
url='https://gitlab.com/jensastrup/pyEchosign',
license='MIT',
author='Jens Astrup',
author_email='jensaiden@gmail.com',
description='Connect to the Echosign API without constructing HTTP requests',
long_description=open('README.rst').read(),
install_requires=['requests>=2.12.4, <3.0.0', 'arrow>=0.10.0, <1.0.0'],
tests_require=['coverage', 'nose'],
keywords='adobe echosign',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Topic :: Office/Business',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Natural Language :: English'
]
)