Files
pillar-python-sdk/setup.py
Sybren A. Stüvel 1e44703147 Don't include *.md files in wheel.
Those are installed in /usr/lib/pillarsdk or /path/to/venv/lib/pillarsdk,
which is too far away from the Python package itself.
2016-05-09 15:03:14 +02:00

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.1.1',
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']
)