Skip to content

Commit d162bf1

Browse files
+ dependency setup with poetry
1 parent 89f6f48 commit d162bf1

File tree

4 files changed

+225
-45
lines changed

4 files changed

+225
-45
lines changed

poetry.lock

Lines changed: 209 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
1-
[project]
1+
[tool.poetry]
22
name = "thread"
33
version = "0.0.1"
44
description = "Threading module extension"
5+
authors = ["Alex <taboez4life@gmail.com>"]
6+
readme = "README.md"
7+
packages = [{include = "thread", from = "src"}]
8+
9+
[tool.poetry.dependencies]
10+
python = "^3.11"
11+
numpy = "^1.26.2"
12+
13+
14+
[tool.poetry.group.dev.dependencies]
15+
pytest = "^7.4.3"
16+
coverage = "^7.3.2"
17+
ruff = "^0.1.5"
518

619
[build-system]
7-
requires = ["setuptools", "wheel"]
8-
build-backend = "setuptools.build_meta"
20+
requires = ["poetry-core"]
21+
build-backend = "poetry.core.masonry.api"

setup.cfg

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)