Skip to content

Commit

Permalink
Merge pull request #1374 from pika/pika-1372
Browse files Browse the repository at this point in the history
Use pyproject.toml only
  • Loading branch information
lukebakken committed Jun 30, 2022
2 parents 4816c2b + 460f132 commit ef58f25
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 54 deletions.
60 changes: 59 additions & 1 deletion pyproject.toml
@@ -1,3 +1,61 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"

[project]
name = "pika"
version = "1.3.0rc1"
maintainers = [{name = "Gavin M. Roy", email = "gavinmroy@gmail.com"}]
license = {text = "BSD-3-Clause"}
description = "Pika Python AMQP Client Library"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: Jython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Communications",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
]
dependencies = []

[project.readme]
file = "README.rst"
content-type = "text/x-rst"

[project.urls]
Homepage = "https://pika.readthedocs.io"
Source = "https://github.com/pika/pika"

[project.optional-dependencies]
gevent = ["gevent"]
tornado = ["tornado"]
twisted = ["twisted"]

[tool.setuptools]
zip-safe = true
include-package-data = false

[tool.setuptools.packages.find]
include = ["pika"] # pika.*
namespaces = false

[tool.setuptools.package-data]
"*" = ["LICENSE", "README.rst"]

[tool.distutils.bdist_wheel]
universal = 1
53 changes: 0 additions & 53 deletions setup.cfg

This file was deleted.

0 comments on commit ef58f25

Please sign in to comment.