Codebase list python-procrunner / b805517 setup.py
b805517

Tree @b805517 (Download .tar.gz)

setup.py @b805517raw · history · blame

#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages
import sys

with open('README.rst') as readme_file:
    readme = readme_file.read()

with open('HISTORY.rst') as history_file:
    history = history_file.read()

requirements = [
    'six',
    # PyWin32 is only supported on 2.7 and 3.5+
    'pywin32; sys_platform=="win32" and python_version=="2.7"',
    'pywin32; sys_platform=="win32" and python_version>="3.5"',
]

setup_requirements = ['pytest-runner', 'six']

test_requirements = ['mock', 'pytest']

setup(
    author="Markus Gerstel",
    author_email='scientificsoftware@diamond.ac.uk',
    classifiers=[
        'Development Status :: 4 - Beta',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Natural Language :: English',
        'Operating System :: OS Independent',
        "Programming Language :: Python :: 2",
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.4',
        'Programming Language :: Python :: 3.5',
        'Programming Language :: Python :: 3.6',
        'Topic :: Software Development :: Libraries :: Python Modules'
    ],
    description="Versatile utility function to run external processes",
    install_requires=requirements,
    license="BSD license",
    long_description=readme + '\n\n' + history,
    include_package_data=True,
    keywords='procrunner',
    name='procrunner',
    packages=find_packages(include=['procrunner']),
    setup_requires=setup_requirements,
    test_suite='tests',
    tests_require=test_requirements,
    url='https://github.com/DiamondLightSource/python-procrunner',
    version='0.6.1',
    zip_safe=False,
)