forked from rendrom/rosreestr2coord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (37 loc) · 1.03 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
[project]
name = "rosreestr2coord"
version = "4.4.0"
description = "Get geometry from rosreestr"
authors = [{ name = "Artemiy Doroshkov", email = "[email protected]" }]
dependencies = [
"numpy",
"Pillow",
"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" }
readme = "README.md"
[project.scripts]
rosreestr2coord = "rosreestr2coord.console:console"
[project.optional-dependencies]
dev = ["black", "isort"]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["rosreestr2coord"]
include-package-data = true
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
# https://pypi.python.org/pypi/twine
# pip install build twine
# python -m build
# twine upload dist/*
# twine upload -u 'rendrom' --repository-url https://upload.pypi.org/legacy/ dist/*