A Python port of the Invisible Internet Project (I2P)
at main 29 lines 772 B view raw
1[build-system] 2requires = ["hatchling"] 3build-backend = "hatchling.build" 4 5[project] 6name = "i2p-utils" 7version = "0.1.0" 8description = "I2P utility libraries — meta-package" 9requires-python = ">=3.11" 10license = {text = "MIT"} 11authors = [{name = "bimo.studio", email = "hello@bimo.studio"}] 12readme = "README.md" 13classifiers = [ 14 "Development Status :: 3 - Alpha", 15 "Programming Language :: Python :: 3", 16 "Programming Language :: Python :: 3.11", 17 "License :: OSI Approved :: MIT License", 18 "Topic :: Internet", 19 "Topic :: Security :: Cryptography", 20] 21dependencies = [ 22 "i2p-py-util>=0.1.0", 23 "i2p-py-stat>=0.1.0", 24 "i2p-py-time>=0.1.0", 25 "i2p-py-kademlia>=0.1.0", 26] 27 28[project.urls] 29Repository = "https://github.com/Bimo-Studio/i2p-python"