File: setup.py

package info (click to toggle)
pyrundeck 0.9.10-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 100 kB
  • sloc: python: 253; makefile: 3
file content (19 lines) | stat: -rw-r--r-- 518 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python

from setuptools import setup, find_packages


setup(
    name="pyrundeck",
    version="0.9.10",
    license="GPL3",
    description="Python REST API client for Rundeck 2.6+",
    long_description=open("README.md", "r").read(),
    long_description_content_type="text/markdown",
    author="Philipp Schmitt",
    author_email="philipp@schmitt.co",
    url="https://github.com/pschmitt/pyrundeck",
    packages=find_packages(),
    include_package_data=True,
    install_requires=["requests"],
)