You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.2 KiB
54 lines
1.2 KiB
[metadata]
|
|
name = announce_server
|
|
author = Mathematical Michael
|
|
author_email = mm@clfx.cc
|
|
url = https://git.mlden.com/mm/announce-server.git
|
|
license = MIT
|
|
description = Announces a server to a host
|
|
long_description = file: README.md
|
|
long_description_content_type = text/markdown
|
|
classifiers =
|
|
Development Status :: 3 - Alpha
|
|
Intended Audience :: Developers
|
|
License :: OSI Approved :: MIT License
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.6
|
|
Programming Language :: Python :: 3.7
|
|
Programming Language :: Python :: 3.8
|
|
Programming Language :: Python :: 3.9
|
|
Programming Language :: Python :: 3.10
|
|
|
|
|
|
[options]
|
|
package_dir =
|
|
= src
|
|
packages = find:
|
|
install_requires =
|
|
python-socketio[asyncio_client]
|
|
|
|
[options.packages.find]
|
|
where = src
|
|
|
|
[options.extras_require]
|
|
dev =
|
|
build
|
|
setuptools_scm
|
|
pytest
|
|
pytest-mock
|
|
pytest-asyncio
|
|
pytest-cov
|
|
# asynctest; python_version<'3.8'
|
|
|
|
[coverage:run]
|
|
source = announce_server
|
|
branch = True
|
|
|
|
[coverage:report]
|
|
# Fail the test if coverage is below a certain percentage
|
|
fail_under = 85
|
|
show_missing = True
|
|
exclude_lines =
|
|
if __name__ == .__main__.:
|
|
|
|
[tool:pytest]
|
|
addopts = --cov --cov-report term-missing
|