Codebase list python-procrunner / upstream/2.3.0+git20210830.1.ef963e8 setup.py
upstream/2.3.0+git20210830.1.ef963e8

Tree @upstream/2.3.0+git20210830.1.ef963e8 (Download .tar.gz)

setup.py @upstream/2.3.0+git20210830.1.ef963e8

e00f039
 
 
e4ce905
e00f039
16c4c94
e00f039
 
16c4c94
e00f039
 
2aa45dc
e00f039
3965eb0
e00f039
74c2274
e00f039
 
 
16c4c94
e00f039
16c4c94
 
 
 
 
 
 
 
d59eda4
f9dbeb8
16c4c94
e00f039
 
 
 
16c4c94
e00f039
16c4c94
 
 
126171f
e00f039
16c4c94
e00f039
16c4c94
e6eed6e
e00f039
 
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import find_packages, setup

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

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

requirements = []

setup_requirements = []

test_requirements = ["pytest"]

setup(
    author="Markus Gerstel",
    author_email="scientificsoftware@diamond.ac.uk",
    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: BSD License",
        "Natural Language :: English",
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.6",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "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"]),
    python_requires=">=3.6",
    setup_requires=setup_requirements,
    test_suite="tests",
    tests_require=test_requirements,
    url="https://github.com/DiamondLightSource/python-procrunner",
    version="2.3.0",
    zip_safe=False,
)