Skip to content

Commit

Permalink
build: update setuptool config
Browse files Browse the repository at this point in the history
  • Loading branch information
rendrom committed Dec 18, 2023
1 parent 3e6bf07 commit 59363b6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

## Зависимости

- Python >= 3.6, <= 3.9
- Python >= 3.6
- [OpenCV](http://opencv.org/)
- Pillow

Expand Down
20 changes: 9 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "rosreestr2coord"
version = "4.3.0"
Expand All @@ -10,28 +6,30 @@ authors = [{ name = "Artemiy Doroshkov", email = "[email protected]" }]
dependencies = [
"numpy",
"Pillow",
"opencv-contrib-python==4.5.3.56",
"matplotlib>=3.5.2",
"opencv-contrib-python",
"matplotlib",
]
license = { file = "LICENSE.md" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
]
urls = { "Homepage" = "https://github.com/rendrom/rosreestr2coord" }
dynamic = ["readme"]
readme = "README.md"

[project.scripts]
rosreestr2coord = "rosreestr2coord.console:console"

[project.optional-dependencies]
dev = ["black", "isort"]

[tool.setuptools.dynamic]
readme = { file = ["README.md"] }
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools.packages.find]
exclude = ["rosreestr2coord.tests*"]
[tool.setuptools]
packages = ["rosreestr2coord"]
include-package-data = true

[tool.isort]
profile = "black"
Expand Down

0 comments on commit 59363b6

Please sign in to comment.