Codebase list python-procrunner / 74c2274 setup.py
74c2274

Tree @74c2274 (Download .tar.gz)

setup.py @74c2274

e00f039
 
 
3965eb0
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
3f4864a
e00f039
 
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages

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.2.0",
    zip_safe=False,
)