Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

zulip lib: Initialize pyproject.toml for Poetry. #757

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions zulip/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
[tool.poetry]
name = "zulip"
version = "0.8.2"
description = "Bindings for the Zulip message API"
authors = ["Zulip Open Source Project <zulip-devel@googlegroups.com>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://zulip.com/"
repository = "https://github.com/zulip/python-zulip-api/"
documentation = "https://zulip.com/api"
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Communications :: Chat",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
packages = [
{ include = "zulip" },
{ include = "integrations" },
]

[tool.poetry.dependencies]
python = ">=3.6"
requests = {version = ">=0.12.1", extras = ["security"]}
matrix-client = "*"
distro = "*"
click = "*"
typing_extensions = ">=3.7"

[tool.poetry.scripts]
zulip-send = "zulip.send:main"
zulip-api-examples = "zulip.api_examples:main"
zulip-matrix-bridge = "integrations.bridge_with_matrix.matrix_bridge:main"
zulip-api = "zulip.cli:cli"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"