Skip to content

Commit

Permalink
Version 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vegu committed Aug 2, 2021
1 parent ddad71f commit d4973ef
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 77 deletions.
2 changes: 1 addition & 1 deletion Ctl/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.1
1.4.3
132 changes: 56 additions & 76 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,114 +1,94 @@
[build-system]
requires = [ "poetry>=0.12",]
build-backend = "poetry.masonry.api"

[tool.poetry]
name = "vaping"
version = "1.4.2"
version = "1.4.3"
description = "vaping is a healthy alternative to smokeping!"
readme = "README.md"
repository = "https://github.com/20c/vaping"
authors = ["20C <[email protected]>"]
authors = [ "20C <[email protected]>",]
license = "Apache-2.0"
classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: No Input/Output (Daemon)", "Intended Audience :: System Administrators", "Intended Audience :: Telecommunications Industry", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Topic :: Internet", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Monitoring", "Topic :: System :: Networking :: Monitoring",]
[[tool.poetry.packages]]
include = "vaping"
from = "src"

classifiers = [
"Development Status :: 5 - Production/Stable",
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Monitoring',
'Topic :: System :: Networking :: Monitoring',
]

packages = [
{ include = "vaping", from = "src" },
]
[tool.isort]
profile = "black"
multi_line_output = 3

[tool.poetry.scripts]
vaping = "vaping.cli:cli"


[tool.poetry.dependencies]
python = "^3.6.2"
pid = "^3"
pluginmgr = "^1"
python-daemon= "^2"
munge = {extras = ["tomlkit", "yaml"], version = "^1.2.0"}
python-daemon = "^2"
confu = "^1.7.1"

# plugins

# graphite
requests = { version = "^2.19.1", optional = true }
graphyte = { version = "^1.4", optional = true }

# rrdtool
rrdtool = { version = ">=0.1.14, <1", optional = true }

# standalone
graphsrv = { version = "^2", optional = true }
vodka = { version = "^3.1", optional = true }

# whisper
whisper = { version = ">=0.9.15, <2", optional = true }

# zeromq
pyzmq = { version = ">=15.3.0, <19", optional = true }

[tool.poetry.dev-dependencies]
# tests
codecov = "^2.1.10"
coverage = "^5.3"
pytest = "^6.1.2"
pytest-cov = "^2.10.1"
pytest-filedata = "^0.4.0"
tox = "^3.20.1"

# linting
# bandit = "^1.6.2"
black = { version = ">=20", allow-prereleases = true }
isort = "^5.7.0"
flake8 = "^3.8.4"
pre-commit = "^2.13"
pyupgrade = "^2.19.4"
mypy = "^0.812"

# ctl
ctl = "^1"
jinja2 = "^2.11.2"
tmpl = "^1"
twine = "^3.3.0"

# docs
markdown-include = "^0.6.0"
mkdocs = "^1.1.2"
pymdgen = "^1"

[tool.poetry.extras]
graphite = ["graphyte", "requests"]
rrdtool = ["rrdtool"]
standalone = ["graphsrv", "vodka"]
whisper = ["whisper"]
zeromq = ["pyzmq"]

# all extras
all = [
"graphsrv",
"graphyte",
"pyzmq",
"rrdtool",
"requests",
"vodka",
"whisper",
]

[tool.isort]
profile = "black"
multi_line_output = 3

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
graphite = [ "graphyte", "requests",]
rrdtool = [ "rrdtool",]
standalone = [ "graphsrv", "vodka",]
whisper = [ "whisper",]
zeromq = [ "pyzmq",]
all = [ "graphsrv", "graphyte", "pyzmq", "rrdtool", "requests", "vodka", "whisper",]

[tool.poetry.dependencies.munge]
extras = [ "tomlkit", "yaml",]
version = "^1.2.0"

[tool.poetry.dependencies.requests]
version = "^2.19.1"
optional = true

[tool.poetry.dependencies.graphyte]
version = "^1.4"
optional = true

[tool.poetry.dependencies.rrdtool]
version = ">=0.1.14, <1"
optional = true

[tool.poetry.dependencies.graphsrv]
version = "^2"
optional = true

[tool.poetry.dependencies.vodka]
version = "^3.1"
optional = true

[tool.poetry.dependencies.whisper]
version = ">=0.9.15, <2"
optional = true

[tool.poetry.dependencies.pyzmq]
version = ">=15.3.0, <19"
optional = true

[tool.poetry.dev-dependencies.black]
version = ">=20"
allow-prereleases = true

0 comments on commit d4973ef

Please sign in to comment.