/ setup.py
setup.py
 1  from setuptools import setup, find_packages
 2  
 3  setup(
 4      name="fx-sdk",
 5      version="0.4.0",
 6      packages=find_packages(),
 7      include_package_data=True,
 8      package_data={
 9          "fx_sdk": ["abis/*.json"],
10      },
11      install_requires=[
12          "web3>=6.0.0",
13          "eth-account>=0.5.0",
14          "eth-typing>=3.0.0",
15          "eth-utils>=2.0.0",
16          "python-dotenv>=1.0.0",
17      ],
18      author="Christopher Stampar (@cstampar)",
19      author_email="cstampar@me.com",
20      description="A Pythonic SDK for f(x) Protocol",
21      long_description=open("README.md").read(),
22      long_description_content_type="text/markdown",
23      url="https://github.com/chrisstampar/fx-sdk",
24      project_urls={
25          "Homepage": "https://github.com/chrisstampar/fx-sdk",
26          "Documentation": "https://fx-sdk.readthedocs.io/en/latest/",
27          "Source": "https://github.com/chrisstampar/fx-sdk",
28          "Bug Tracker": "https://github.com/chrisstampar/fx-sdk/issues",
29      },
30      classifiers=[
31          "Programming Language :: Python :: 3",
32          "License :: OSI Approved :: MIT License",
33          "Operating System :: OS Independent",
34      ],
35      python_requires=">=3.8",
36  )