-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (60 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
65 lines (60 loc) · 1.18 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0", "wheel"]
[project]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
dependencies = [
"sympy"
]
description = "A simple cyclic PRNG"
license = {file = "LICENSE"}
name = "cyclicprng"
readme = "README.md"
requires-python = ">=3.8"
version = "0.2.0"
[project.urls]
"Source Code" = "https://github.com/natlas/cyclicprng"
"Tracker" = "https://github.com/natlas/cyclicprng/issues"
[tool.ruff]
[tool.ruff.lint]
ignore = [
"PLC0414",
"PLR0911",
"PLR0912",
"PLR0915",
"PLR2004"
]
select = [
# flake8-bugbear
"B",
# flake8-comprehensions
"C4",
# pyflakes
"F",
# flynt
"FLY",
# isort
"I",
# pylint
"PL",
# flake8-return
"RET",
# Ruff's own rules
"RUF",
# flake8-simplify
"SIM",
# flake8-tidy-imports
"TID",
# pyupgrade
"UP"
]
[tool.setuptools]
# Instead of scanning for packages, define a single python module
py-modules = ["cyclicprng"]