Skip to content
Snippets Groups Projects
Commit 264192c1 authored by Piotr Maślanka's avatar Piotr Maślanka Committed by Piotr Maślanka
Browse files

pyproject.toml

parent 9512a609
No related branches found
No related tags found
No related merge requests found
[run]
branch=1
source=
satella
concurrency=thread
omit=
tests/*
.eggs/*
setup.py
satella/__init__.py
satella/os/signals.py
[report]
include=
satella/*
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
################# #################
test*.json test*.json
test*.txt test*.txt
.pytest_cache
.eggs .eggs
satella.sublime* satella.sublime*
hs_err_pid*.log hs_err_pid*.log
......
[MASTER]
disable=
C0114, # missing-module-docstring
C0116, # missing-function-docstring
W0603, # global-statement
C0103, # invalid-name
R0913 # too-many-arguments
[FORMAT]
max-line-length=110
...@@ -4,13 +4,7 @@ dynamic = ["version"] ...@@ -4,13 +4,7 @@ dynamic = ["version"]
description = "Utilities for writing servers in Python" description = "Utilities for writing servers in Python"
readme = {file = "README.md", content-type="text/markdown"} readme = {file = "README.md", content-type="text/markdown"}
authors = [ authors = [
{name = "Piotr Maślanka", email = "pmaslanka@smok.co"}, {name = "Piotr Maślanka", email = "pmaslanka@smok.co"}
{name = "Tzu-Ping Chung", email = "tzu-ping@example.com"},
{name = "Another person"},
{email = "different.person@example.com"},
]
maintainers = [
{name = "Brett Cannon", email = "brett@example.com"}
] ]
requires-python = ">= 3.5" requires-python = ">= 3.5"
license = {file = "LICENSE", text="MIT License"} license = {file = "LICENSE", text="MIT License"}
...@@ -85,3 +79,35 @@ packages = ["satella", ...@@ -85,3 +79,35 @@ packages = ["satella",
"satella.opentracing", "satella.opentracing",
"satella.os", "satella.os",
"satella.time"] "satella.time"]
[tool.pytest]
log_cli = true
[tool.pylint.format]
max-line-length = 120
[tool.pylint.MASTER]
disable = '''
missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
global-statement,
invalid-name,
too-many-arguments
'''
[tool.coverage.run]
branch=1
source= ["satella"]
concurrency="thread"
omit= [
"tests/*",
".eggs/*",
"setup.py",
"satella/__init__.py",
"satella/os/signals.py"]
[report]
include=[
"satella/*"]
[pytest]
log_cli = true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment