Skip to content

Commit

Permalink
Merge pull request #17 from keis/pyproject
Browse files Browse the repository at this point in the history
Convert setup.cfg to pyproject.toml
  • Loading branch information
keis authored Oct 29, 2023
2 parents 51379a3 + 2c1e834 commit c3a36bf
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 32 deletions.
41 changes: 41 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"

[project]
name = "aiogemini"
authors = [{name = "David Keijser", email = "[email protected]"}]
version = "0.2.0"
description = "Gemini protocol implementation for asyncio"
urls = {Homepage = "https://github.com/keis/aiogemini"}
dependencies = [
"yarl ~= 1.6",
"cryptography >= 3.2,< 42.0",
]

[project.readme]
file = "README.md"
content-type = "text/markdown"

[project.optional-dependencies]
tests = [
"hypothesis >= 5.41,< 7.0",
"matchmock ~= 2.1.1",
"mypy >= 1.3,< 2.0",
"pycodestyle ~= 2.6",
"PyHamcrest ~= 2.0",
"pytest >= 6,< 8",
"pytest-asyncio ~= 0.14",
]

[tool.setuptools]
packages = [
"aiogemini",
"aiogemini.server",
"aiogemini.client",
]
zip-safe = false
include-package-data = false

[tool.setuptools.package-data]
aiogemini = ["py.typed"]
32 changes: 0 additions & 32 deletions setup.cfg

This file was deleted.

0 comments on commit c3a36bf

Please sign in to comment.