2021-01-27 16:03:59 +03:00
|
|
|
[tool.poetry]
|
|
|
|
name = "electionguard"
|
2021-09-07 21:21:46 +03:00
|
|
|
version = "1.3.0"
|
2021-01-27 16:03:59 +03:00
|
|
|
description = "ElectionGuard: Support for e2e verified elections."
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["Microsoft <electionguard@microsoft.com>"]
|
|
|
|
maintainers = []
|
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://microsoft.github.io/electionguard-python"
|
|
|
|
repository = "https://github.com/microsoft/electionguard-python"
|
|
|
|
documentation = "https://microsoft.github.io/electionguard-python"
|
|
|
|
keywords = []
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: Unix",
|
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Operating System :: MacOS",
|
|
|
|
"Operating System :: Microsoft :: Windows",
|
|
|
|
"Programming Language :: Python",
|
2021-08-03 22:47:31 +03:00
|
|
|
"Programming Language :: Python :: 3.9.5",
|
2021-01-27 16:03:59 +03:00
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
"Topic :: Utilities"]
|
|
|
|
packages = [{ include = "electionguard", from = "src" }]
|
|
|
|
|
|
|
|
[tool.poetry.urls]
|
|
|
|
"GitHub Pages" = "https://microsoft.github.io/electionguard-python"
|
|
|
|
"Read the Docs" = "https://electionguard-python.readthedocs.io"
|
|
|
|
"Releases" = "https://github.com/microsoft/electionguard-python/releases"
|
|
|
|
"Milestones" = "https://github.com/microsoft/electionguard-python/milestones"
|
|
|
|
"Issue Tracker" = "https://github.com/microsoft/electionguard-python/issues"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2021-08-03 22:47:31 +03:00
|
|
|
python = "^3.9.5"
|
2021-01-27 16:03:59 +03:00
|
|
|
gmpy2 = ">=2.0.8"
|
|
|
|
# For Windows Builds
|
|
|
|
# gmpy2 = { path = "./packages/gmpy2-2.0.8-cp38-cp38-win_amd64.whl" } # 64 bit
|
|
|
|
# gmpy2 = { path = "./packages/gmpy2-2.0.8-cp38-cp38-win32.whl" } # 32 bit
|
|
|
|
cryptography = ">=3.2"
|
|
|
|
psutil = ">=5.7.2"
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
atomicwrites = "*"
|
2021-08-03 22:47:31 +03:00
|
|
|
black = "21.7b0"
|
2021-01-27 16:03:59 +03:00
|
|
|
coverage = "*"
|
|
|
|
docutils = "*"
|
|
|
|
hypothesis = ">=5.15.1"
|
|
|
|
jeepney = "*"
|
2021-07-13 00:25:26 +03:00
|
|
|
mkdocs = "^1.2.1"
|
2021-08-03 23:46:53 +03:00
|
|
|
mypy = "^0.910"
|
2021-01-27 16:03:59 +03:00
|
|
|
pydeps = "*"
|
|
|
|
pylint = "*"
|
2021-08-04 22:29:25 +03:00
|
|
|
pydantic = "^1.8.2"
|
2021-01-27 16:03:59 +03:00
|
|
|
pytest = "*"
|
|
|
|
secretstorage = "*"
|
|
|
|
twine = "*"
|
|
|
|
typish = '*'
|
|
|
|
|
2020-04-28 16:50:18 +03:00
|
|
|
[tool.black]
|
2021-08-03 22:47:31 +03:00
|
|
|
target-version = ['py39']
|
2021-01-27 16:03:59 +03:00
|
|
|
|
2021-08-04 22:29:25 +03:00
|
|
|
[tool.pylint.basic]
|
|
|
|
extension-pkg-whitelist = "pydantic"
|
|
|
|
|
2021-08-03 23:46:53 +03:00
|
|
|
[tool.pylint.format]
|
2021-02-02 17:53:07 +03:00
|
|
|
max-line-length = 120
|
|
|
|
|
2021-01-27 16:03:59 +03:00
|
|
|
# FIXME: Pylint should not require this many exceptions
|
2021-08-03 23:46:53 +03:00
|
|
|
[tool.pylint.messages_control]
|
2021-01-27 16:03:59 +03:00
|
|
|
disable = '''
|
|
|
|
duplicate-code,
|
|
|
|
fixme,
|
|
|
|
invalid-name,
|
|
|
|
missing-module-docstring,
|
|
|
|
missing-function-docstring,
|
|
|
|
no-value-for-parameter,
|
|
|
|
redefined-builtin,
|
|
|
|
too-few-public-methods,
|
|
|
|
too-many-arguments,
|
|
|
|
too-many-branches,
|
|
|
|
too-many-function-args,
|
|
|
|
too-many-lines,
|
|
|
|
too-many-locals,
|
|
|
|
too-many-nested-blocks,
|
|
|
|
unnecessary-lambda,
|
|
|
|
'''
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
branch = true
|
|
|
|
source = ["src/electionguard"]
|
|
|
|
|
|
|
|
[tool.coverage.html]
|
|
|
|
directory = "coverage_html_report"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
2021-08-03 23:46:53 +03:00
|
|
|
[tool.mypy]
|
2021-08-03 22:47:31 +03:00
|
|
|
python_version = 3.9
|
2021-08-04 22:29:25 +03:00
|
|
|
plugins = ["pydantic.mypy"]
|
2021-01-27 16:03:59 +03:00
|
|
|
warn_return_any = true
|
|
|
|
warn_unused_configs = true
|
|
|
|
disallow_untyped_defs = true
|
|
|
|
ignore_missing_imports = true
|
|
|
|
show_column_numbers = true
|