Skip to content

Commit

Permalink
Version 5.0.0 - Going live
Browse files Browse the repository at this point in the history
- Fixing pyproject.toml
  • Loading branch information
CCP-Zeulix committed Apr 16, 2024
1 parent 9880eef commit 57c7616
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
[build-system]
requires = [ "setuptools>=42", "wheel" ]
build-backend = "setuptools.build_meta"

[project]
name = "protoplasm"
dynamic = ["version"]
description = "Utilities for working with Protobuf & gRPC in Python."
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
authors = [
{ name = "Thordur Matthiasson", email = "[email protected]" },
{ name = "Daniel Maxson", email = "[email protected]" }
]
keywords = [ "protobuf", "proto", "dataclasses", "tools", "ccp", "utils" ]
classifiers = [
"Development Status :: 5 - Production/Stable",

"License :: OSI Approved :: MIT License",

"Intended Audience :: Developers",

"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",

"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]

dependencies = [
"ccptools >= 1.1, <2",
"protobuf >=4.25.3, <5",
"grpcio >=1.62.1, <2",
"grpcio-tools >=1.62.1, <2",
"googleapis-common-protos >=1.63.0, <2"
]

[project.urls]
Homepage = "https://github.com/ccpgames/protoplasm"
Documentation = "https://github.com/ccpgames/protoplasm/blob/main/README.md"
Repository = "https://github.com/ccpgames/protoplasm.git"
Issues = "https://github.com/ccpgames/protoplasm/issues"
Changelog = "https://github.com/ccpgames/protoplasm/blob/main/CHANGELOG.md"

[tool.setuptools.dynamic]
version = {attr = "protoplasm.__version__"}

[tool.setuptools.packages.find]
where = [ "." ]
exclude = [ "tests", "tests.*" ]

0 comments on commit 57c7616

Please sign in to comment.