Shape up package configuration and update deps
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
ca9014cd52
commit
cb0a5328cc
@ -1,4 +1,4 @@
|
|||||||
# Molecule Hetzner Cloud Driver Plugin
|
# Molecule Hetzner Cloud Plugin
|
||||||
|
|
||||||
[![Drone CI-CD](https://drone.autonomic.zone/api/badges/autonomic-cooperative/molecule-hetznercloud/status.svg)](https://drone.autonomic.zone/autonomic-cooperative/molecule-hetznercloud)
|
[![Drone CI-CD](https://drone.autonomic.zone/api/badges/autonomic-cooperative/molecule-hetznercloud/status.svg)](https://drone.autonomic.zone/autonomic-cooperative/molecule-hetznercloud)
|
||||||
[![PyPI Package](https://badge.fury.io/py/molecule-hetznercloud.svg)](https://badge.fury.io/py/molecule-hetznercloud)
|
[![PyPI Package](https://badge.fury.io/py/molecule-hetznercloud.svg)](https://badge.fury.io/py/molecule-hetznercloud)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
[build-system]
|
[build-system]
|
||||||
requires = [
|
requires = [
|
||||||
"setuptools >= 41.0.0",
|
"setuptools >= 46.1.3",
|
||||||
"setuptools_scm >= 1.15.0",
|
"setuptools_scm >= 3.5.0",
|
||||||
"setuptools_scm_git_archive >= 1.0",
|
"setuptools_scm_git_archive >= 1.1",
|
||||||
"wheel",
|
"wheel",
|
||||||
]
|
]
|
||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
45
setup.cfg
45
setup.cfg
@ -6,20 +6,19 @@ universal = 1
|
|||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
name = molecule-hetznercloud
|
name = molecule-hetznercloud
|
||||||
url = https://github.com/ansible-community/molecule-hetznercloud
|
url = https://git.autonomic.zone/autonomic-cooperative/molecule-hetznercloud
|
||||||
project_urls =
|
project_urls =
|
||||||
Bug Tracker = https://github.com/ansible-community/molecule-hetznercloud/issues
|
Bug Tracker = https://git.autonomic.zone/autonomic-cooperative/molecule-hetznercloud/issues
|
||||||
Release Management = https://github.com/ansible-community/molecule-hetznercloud/projects
|
CI: Drone = https://drone.autonomic.zone/autonomic-cooperative/molecule-hetznercloud/
|
||||||
CI: Travis = https://travis-ci.com/ansible-community/molecule-hetznercloud
|
Source Code = https://git.autonomic.zone/autonomic-cooperative/molecule-hetznercloud
|
||||||
Source Code = https://github.com/ansible-community/molecule-hetznercloud
|
|
||||||
description = Molecule Hetzner Cloud Plugin :: run molecule tests with hetzner cloud as a provisioner
|
description = Molecule Hetzner Cloud Plugin :: run molecule tests with hetzner cloud as a provisioner
|
||||||
long_description = file: README.rst
|
long_description = file: README.md
|
||||||
long_description_content_type = text/x-rst
|
long_description_content_type = text/markdown
|
||||||
author = Luke Murphy
|
author = decentral1se
|
||||||
author_email = lukewm@riseup.net
|
author_email = lukewm@riseup.net
|
||||||
maintainer = Luke Murphy
|
maintainer = decentral1se
|
||||||
maintainer_email = lukewm@riseup.net
|
maintainer_email = lukewm@riseup.net
|
||||||
license = MIT
|
license = LGPL
|
||||||
license_file = LICENSE
|
license_file = LICENSE
|
||||||
classifiers =
|
classifiers =
|
||||||
Development Status :: 5 - Production/Stable
|
Development Status :: 5 - Production/Stable
|
||||||
@ -30,14 +29,14 @@ classifiers =
|
|||||||
Intended Audience :: Information Technology
|
Intended Audience :: Information Technology
|
||||||
Intended Audience :: System Administrators
|
Intended Audience :: System Administrators
|
||||||
|
|
||||||
License :: OSI Approved :: MIT License
|
License :: OSI Approved :: LGPL License
|
||||||
|
|
||||||
Natural Language :: English
|
Natural Language :: English
|
||||||
|
|
||||||
Operating System :: OS Independent
|
Operating System :: OS Independent
|
||||||
|
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.8
|
||||||
|
|
||||||
Topic :: System :: Systems Administration
|
Topic :: System :: Systems Administration
|
||||||
Topic :: Utilities
|
Topic :: Utilities
|
||||||
@ -52,27 +51,27 @@ keywords =
|
|||||||
|
|
||||||
[options]
|
[options]
|
||||||
use_scm_version = True
|
use_scm_version = True
|
||||||
python_requires = >=3.7
|
python_requires = >=3.8
|
||||||
packages = find:
|
packages = find:
|
||||||
include_package_data = True
|
include_package_data = True
|
||||||
zip_safe = False
|
zip_safe = False
|
||||||
setup_requires =
|
setup_requires =
|
||||||
setuptools_scm >= 1.15.0
|
setuptools_scm >= 3.5.0
|
||||||
setuptools_scm_git_archive >= 1.0
|
setuptools_scm_git_archive >= 1.1
|
||||||
install_requires =
|
install_requires =
|
||||||
molecule >= 3.0.3, <= 3.1
|
molecule >= 3.0.3, <= 3.1
|
||||||
pyyaml >= 5.1, < 6
|
pyyaml >= 5.3.1, < 6
|
||||||
|
|
||||||
[options.extras_require]
|
[options.extras_require]
|
||||||
test =
|
test =
|
||||||
hcloud>=1.6.2
|
hcloud >= 1.6.3
|
||||||
mock>=3.0.5, < 4
|
mock >= 4.0.2, < 4
|
||||||
pytest-cov>=2.7.1, < 3
|
pytest-cov >= 2.8.1, < 3
|
||||||
pytest-helpers-namespace>=2019.1.8, < 2020
|
pytest-helpers-namespace >= 2019.1.8, < 2020
|
||||||
pytest-mock>=1.10.4, < 2
|
pytest-mock >= 3.1.0, < 4
|
||||||
pytest-verbose-parametrize>=1.7.0, < 2
|
pytest-verbose-parametrize>=1.7.0, < 2
|
||||||
pytest-xdist>=1.29.0, < 2
|
pytest-xdist>=1.31.0, < 2
|
||||||
pytest>=4.6.3, < 5
|
pytest>=5.4.1, < 6
|
||||||
|
|
||||||
[options.packages.find]
|
[options.packages.find]
|
||||||
where = .
|
where = .
|
||||||
|
Loading…
Reference in New Issue
Block a user