-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (61 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
67 lines (61 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
authors = ["Jérémie Lumbroso <lumbroso@cs.princeton.edu>"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description = "A simple, time-tested, family of random hash functions in Python, based on CRC32 and xxHash, affine transformations, and the Mersenne Twister."
homepage = "https://github.com/jlumbroso/python-random-hash"
include = [
"README.md",
]
keywords = []
license = "LGPL-3.0-or-later"
name = "randomhash"
readme = "README.md"
repository = "https://github.com/jlumbroso/python-random-hash"
version = "0.6.0"
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
envlist = py{38,39}
[testenv]
requires =
tox-poetry-dev-dependencies
poetry_add_dev_dependencies = True
commands =
pytest
"""
[tool.poetry.dependencies]
python = "^3.8"
xxhash = "^3.0.0"
[tool.poetry.dev-dependencies]
codecov = "^2.1.12"
# ipykernel = "^5.3.4"
# ipywidgets = "^7.5.1"
pytest = "^5.2"
pytest-cov = "^3.0.0"
# pytest-mock = "^3.3.1"
pytest-repeat = "^0.9.1"
pytest-subtests = "^0.3.2"
# sphinx = "^3.3.0"
# sphinx-autodoc-typehints = "^1.11.1"
# sphinx-rtd-theme = "^0.5.0"
tox = "^3.20.1"
tox-poetry-dev-dependencies = "^0.0.5"
# dependabot dependency pins (vulnerability warnings)
# babel = "^2.10.1"
# bleach = "^3.3.0"
# ipython = "^7.31.1"
# jinja2 = "^3.1.2"
# notebook = "^6.4.10"
# py = "^1.11.0"
# pygments = "^2.12.0"
# urllib3 = "^1.26.9"
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]