Skip to content

Commit 0924316

Browse files
committed
update packaging settings to pyproject.toml
1 parent a5f8102 commit 0924316

File tree

2 files changed

+37
-39
lines changed

2 files changed

+37
-39
lines changed

pyproject.toml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[build-system]
2+
requires = ["setuptools >= 77.0.3"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "inventree"
7+
dynamic = ["version"]
8+
description = "Python interface for InvenTree inventory management system"
9+
readme = "README.md"
10+
license = "MIT"
11+
requires-python = ">=3.9"
12+
authors = [
13+
{ name = "Oliver Walters", email = "[email protected]" },
14+
]
15+
keywords = [
16+
"barcode",
17+
"bill",
18+
"bom",
19+
"inventory",
20+
"management",
21+
"materials",
22+
"of",
23+
"stock",
24+
]
25+
dependencies = [
26+
"pip-system-certs>=4.0",
27+
"requests>=2.27.0",
28+
]
29+
30+
[project.urls]
31+
Homepage = "https://github.com/inventree/inventree-python/"
32+
33+
[tool.setuptools.dynamic]
34+
version = {attr = "inventree.base.INVENTREE_PYTHON_VERSION"}
35+
36+
[tool.setuptools]
37+
packages = ["inventree"]

setup.py

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

0 commit comments

Comments
 (0)