-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (74 loc) · 2.25 KB
/
pyproject.toml
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
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "itembed"
authors = [
{name = "Johan Berdat", email = "[email protected]"},
]
license = {text = "MIT License"}
description = "word2vec for itemsets"
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"numba >=0.34, <1.0",
"scipy >=0.16, <2.0",
"tqdm >=1.0",
]
keywords = [
"itemset",
"word2vec",
"embedding",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
"Topic :: Utilities",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://sdsc-innovation.github.io/itembed/"
Repository = "https://github.com/sdsc-innovation/itembed.git"
Issues = "https://github.com/sdsc-innovation/itembed/issues"
[tool.setuptools.dynamic]
version = {attr = "itembed.__version__"}
[tool.ruff]
extend-include = ["*.ipynb"]
target-version = "py37"
line-length = 88
[tool.lint.ruff]
extend-select = [
"W605", # pycodestyle: invalid-escape-sequence
"S102", # flake8-bandit: exec-builtin
"INP", # flake8-no-pep420
"PYI", # flake8-pyi
"PT", # flake8-pytest-style
"PGH", # pygrep-hooks
"PL", # Pylint
"NPY", # NumPy-specific rules
"RUF", # Ruff-specific rules
]
ignore = [
"E741", # ambiguous-variable-name
"PLR0913", # too-many-arguments
"PLR2004", # magic-value-comparison
"NPY002", # numpy-legacy-random
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"tests/**" = ["INP001"]
"[!t][!e][!s][!t][!s]*/**" = ["PT"]