Skip to content

Commit 76154fa

Browse files
committed
poetry: add support for poetry
1 parent 389c4c7 commit 76154fa

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

poetry.lock

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

poetry.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[virtualenvs]
2+
create = true
3+
in-project = true

pyproject.toml

+9-19
Original file line numberDiff line numberDiff line change
@@ -6,27 +6,17 @@ authors = []
66
license = "MIT"
77
readme = "README.md"
88
packages = [{ include = "hyper_systems" }]
9-
exclude = ["docs"]
9+
homepage = "https://hyper.systems"
10+
documentation = "https://github.com/hyper-systems/hyper-python-sdk"
11+
repository = "https://github.com/hyper-systems/hyper-python-sdk"
12+
13+
[tool.poetry.urls]
14+
"Bug Tracker" = "https://github.com/hyper-systems/hyper-python-sdk/issues"
1015

1116
[tool.poetry.dependencies]
1217
python = ">=3.7"
1318

14-
[project]
15-
name = "hyper-systems"
16-
version = "1.0.0"
17-
description = "Python SDK for interacting with the Hyper.systems platform."
18-
readme = "README.md"
19-
requires-python = ">=3.7"
20-
classifiers = [
21-
"Programming Language :: Python :: 3",
22-
"License :: OSI Approved :: MIT License",
23-
"Operating System :: OS Independent",
24-
]
25-
26-
[project.urls]
27-
"Homepage" = "https://github.com/hyper-systems/hyper-python-sdk"
28-
"Bug Tracker" = "https://github.com/hyper-systems/hyper-python-sdk/issues"
29-
3019
[build-system]
31-
requires = ["setuptools>=61.0"]
32-
build-backend = "setuptools.build_meta"
20+
requires = ["poetry-core>=1.0.0"]
21+
build-backend = "poetry.core.masonry.api"
22+

0 commit comments

Comments
 (0)