at dantic 936 B view raw
1[project] 2name = "atpasser" 3version = "0.1.0" 4description = "Tools for ATProto" 5authors = [{ name = "diaowinner", email = "diaowinner@qq.com" }] 6readme = "README.md" 7requires-python = ">=3.13" 8dependencies = [ 9 "py-cid (>=0.3.0,<0.4.0)", # for CID 10 "cbor2 (>=5.7.0,<5.8.0)", # for CBOR 11 "dnspython (>=2.7.0,<3.0.0)", # for DNS resolve 12 "requests (>=2.32.5,<3.0.0)", # for HTTPS resolve 13 "pyld[requests] (>=2.0.4,<3.0.0)", # for JSON-LD support 14 "jsonpath-ng (>=1.7.0,<2.0.0)", # for URI fragment support 15 "cryptography (>=45.0.7,<46.0.0)", # just keep it 16 "langcodes (>=3.5.0,<4.0.0)", # language codes support 17 "pydantic (>=2.11.9,<3.0.0)", 18] 19license = "MIT OR Apache-2.0" 20license-files = ["LICEN[CS]E.*"] 21 22[tool.poetry] 23packages = [{ include = "atpasser", from = "src" }] 24 25 26[build-system] 27requires = ["poetry-core>=2.0.0,<3.0.0"] 28build-backend = "poetry.core.masonry.api"