generated from daniil-berg/boilerplate-py
	Initial commit
This commit is contained in:
		
							
								
								
									
										12
									
								
								.coveragerc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								.coveragerc
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,12 @@
 | 
			
		||||
[run]
 | 
			
		||||
source = src/
 | 
			
		||||
branch = true
 | 
			
		||||
omit =
 | 
			
		||||
    .venv/*
 | 
			
		||||
 | 
			
		||||
[report]
 | 
			
		||||
fail_under = 100
 | 
			
		||||
show_missing = True
 | 
			
		||||
skip_covered = False
 | 
			
		||||
omit =
 | 
			
		||||
    tests/*
 | 
			
		||||
							
								
								
									
										10
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
# Python virtual environment:
 | 
			
		||||
/.venv/
 | 
			
		||||
# IDE settings:
 | 
			
		||||
/.idea/
 | 
			
		||||
/.vscode/
 | 
			
		||||
# Distribution / packaging:
 | 
			
		||||
*.egg-info/
 | 
			
		||||
/dist/
 | 
			
		||||
# Python cache:
 | 
			
		||||
__pycache__/
 | 
			
		||||
							
								
								
									
										19
									
								
								README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								README.md
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,19 @@
 | 
			
		||||
# syslogformat
 | 
			
		||||
 | 
			
		||||
Python logging.Formatter class for syslog style messages
 | 
			
		||||
 | 
			
		||||
## Usage
 | 
			
		||||
 | 
			
		||||
...
 | 
			
		||||
 | 
			
		||||
## Installation
 | 
			
		||||
 | 
			
		||||
`pip install syslogformat`
 | 
			
		||||
 | 
			
		||||
## Dependencies
 | 
			
		||||
 | 
			
		||||
Python Version ..., OS ...
 | 
			
		||||
 | 
			
		||||
## Building from source
 | 
			
		||||
 | 
			
		||||
Run `python -m build`
 | 
			
		||||
							
								
								
									
										3
									
								
								coverage.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										3
									
								
								coverage.sh
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,3 @@
 | 
			
		||||
#!/usr/bin/env sh
 | 
			
		||||
 | 
			
		||||
coverage erase && coverage run -m unittest discover && coverage report
 | 
			
		||||
							
								
								
									
										6
									
								
								pyproject.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								pyproject.toml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
			
		||||
[build-system]
 | 
			
		||||
requires = [
 | 
			
		||||
    "setuptools>=42",
 | 
			
		||||
    "wheel"
 | 
			
		||||
]
 | 
			
		||||
build-backend = "setuptools.build_meta"
 | 
			
		||||
							
								
								
									
										0
									
								
								requirements/common.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								requirements/common.txt
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										2
									
								
								requirements/dev.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								requirements/dev.txt
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,2 @@
 | 
			
		||||
-r common.txt
 | 
			
		||||
coverage
 | 
			
		||||
							
								
								
									
										29
									
								
								setup.cfg
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										29
									
								
								setup.cfg
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,29 @@
 | 
			
		||||
[metadata]
 | 
			
		||||
name = syslogformat
 | 
			
		||||
version = 0.0.1
 | 
			
		||||
author = Daniil
 | 
			
		||||
author_email = mail@placeholder123.to
 | 
			
		||||
description = Python logging.Formatter class for syslog style messages
 | 
			
		||||
long_description = file: README.md
 | 
			
		||||
long_description_content_type = text/markdown
 | 
			
		||||
url = https://git.fajnberg.de/daniil/syslogformat
 | 
			
		||||
project_urls =
 | 
			
		||||
    Bug Tracker = https://git.fajnberg.de/daniil/syslogformat/issues
 | 
			
		||||
classifiers =
 | 
			
		||||
    Programming Language :: Python :: 3
 | 
			
		||||
    Operating System :: OS Independent
 | 
			
		||||
 | 
			
		||||
[options]
 | 
			
		||||
package_dir =
 | 
			
		||||
    = src
 | 
			
		||||
packages = find:
 | 
			
		||||
python_requires = >=3
 | 
			
		||||
install_requires =
 | 
			
		||||
    ...
 | 
			
		||||
 | 
			
		||||
[options.extras_require]
 | 
			
		||||
dev =
 | 
			
		||||
    coverage
 | 
			
		||||
 | 
			
		||||
[options.packages.find]
 | 
			
		||||
where = src
 | 
			
		||||
							
								
								
									
										0
									
								
								src/package_name/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								src/package_name/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										0
									
								
								tests/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								tests/__init__.py
									
									
									
									
									
										Normal file
									
								
							
		Reference in New Issue
	
	Block a user