35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
import glob
|
|
from setuptools import setup
|
|
|
|
long_description = """
|
|
The Pillar REST SDK provides Python APIs to communicate to the Pillar webservices.
|
|
"""
|
|
|
|
setup(
|
|
name='pillarsdk',
|
|
version='1.3.0',
|
|
author=u'Francesco Siddi, Sybren A. Stüvel, PayPal',
|
|
author_email='francesco@blender.org',
|
|
packages=['pillarsdk'],
|
|
scripts=[],
|
|
url='https://github.com/armadillica/Pillar-Python-SDK',
|
|
license='BSD License',
|
|
description='The Pillar REST SDK provides Python APIs to communicate to the Pillar webservices.',
|
|
long_description=long_description,
|
|
install_requires=['requests>=1.0.0', 'pyopenssl>=0.14'],
|
|
tests_require=['tox', 'coverage', 'pytest', 'pytest-xdist', 'pytest-cov'],
|
|
classifiers=[
|
|
'Intended Audience :: Developers',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
],
|
|
keywords=['pillar', 'rest', 'sdk', 'tracking', 'film', 'production']
|
|
)
|