/ pyproject.toml
pyproject.toml
1 [build-system] 2 requires = ["setuptools>=42", "wheel"] 3 build-backend = "setuptools.build_meta" 4 5 [project] 6 name = "fx-sdk" 7 version = "0.4.0" 8 authors = [ 9 {name = "Christopher Stampar", email = "cstampar@me.com"} 10 ] 11 description = "A Pythonic SDK for the f(x) Protocol" 12 readme = "README.md" 13 requires-python = ">=3.8" 14 keywords = ["defi", "ethereum", "fx-protocol", "stablecoin"] 15 classifiers = [ 16 "Programming Language :: Python :: 3", 17 "License :: OSI Approved :: MIT License", 18 "Operating System :: OS Independent", 19 ] 20 dependencies = [ 21 "web3>=6.0.0", 22 "eth-account>=0.5.0", 23 "eth-typing>=3.0.0", 24 "eth-utils>=2.0.0", 25 "python-dotenv>=1.0.0", 26 ] 27 28 [project.urls] 29 Homepage = "https://github.com/chrisstampar/fx-sdk" 30 Documentation = "https://fx-sdk.readthedocs.io/en/latest/" 31 Source = "https://github.com/chrisstampar/fx-sdk" 32 "Bug Tracker" = "https://github.com/chrisstampar/fx-sdk/issues"