Skip to content

Commit

Permalink
New building system
Browse files Browse the repository at this point in the history
  • Loading branch information
Badiboy committed Jun 22, 2024
1 parent 4cc9c2a commit ac83cbc
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "pyCryptoPayAPI"
version = "0.1.0"
description = "Simple Python implementation of Crypto Pay API (Crypto Pay is a payment system based on @CryptoBot)."
authors = [{name = "Badiboy"}]
license = {text = "MIT license"}
readme = "README.md"
requires-python = ">=3.8"
keywords = ["python", "api", "crypto", "cryptobot", "crypto-payment", "cryptopay"]
classifiers = [
"Development Status :: 4 - Beta",
"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",
"Environment :: Console",
"License :: OSI Approved :: MIT License"
]
dependencies = ["requests"]

[project.urls]
Homepage = "https://github.com/Badiboy/pyCryptoPayAPI"
Documentation = "https://github.com/Badiboy/pyCryptoPayAPI"
Repository = "https://github.com/Badiboy/pyCryptoPayAPI"
Issues = "https://github.com/Badiboy/pyCryptoPayAPI/issues"


[tool.hatch.build.targets.wheel]
include = ["pyCryptoPayAPI/*"]

0 comments on commit ac83cbc

Please sign in to comment.