mirror of
https://github.com/dtomlinson91/panaetius.git
synced 2025-12-22 04:55:44 +00:00
48 lines
1.4 KiB
TOML
48 lines
1.4 KiB
TOML
[tool.poetry]
|
|
name = "panaetius"
|
|
version = "1.1"
|
|
description = "Python module to gracefully handle a .config file/environment variables for scripts, with built in masking for sensitive options. Provides a Splunk friendly formatted logger instance."
|
|
license = "MIT"
|
|
authors = ["dtomlinson <dtomlinson@panaetius.co.uk>"]
|
|
readme = "./README.rst"
|
|
homepage = "https://github.com/dtomlinson91/panaetius"
|
|
repository = "https://github.com/dtomlinson91/panaetius"
|
|
documentation = "https://panaetius.readthedocs.io/en/latest/introduction.html"
|
|
classifiers = [
|
|
"Environment :: Plugins",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Natural Language :: English",
|
|
"Environment :: MacOS X",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Topic :: Software Development",
|
|
"Topic :: Software Development :: Libraries",
|
|
"Topic :: Utilities"
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
toml = "^0.10.0"
|
|
pylite = "^0.1.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^3.0"
|
|
autopep8 = "^1.4"
|
|
pudb = "^2019.2"
|
|
McCabe = "^0.6.1"
|
|
YAPF = "^0.29.0"
|
|
pydocstyle = "^5.0"
|
|
Pyflakes = "^2.1"
|
|
Rope = "^0.16.0"
|
|
python-language-server = "^0.31.4"
|
|
pycodestyle = "^2.5"
|
|
sphinx = "^2.3"
|
|
sphinx_rtd_theme = "^0.4.3"
|
|
prospector = "^1.3.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|