Skip to content

Commit

Permalink
Fix pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
ppsimatikas committed Oct 18, 2024
1 parent 202dedc commit 2577543
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "chainbase_python_sdk"

[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from setuptools import find_packages, setup
from setuptools import setup, find_packages

setup(
name="chainbase_python_sdk",
name="chainbase_sdk",
version="0.0.1",
description="A Python SDK for interacting with Chainbase APIs.",
author="Panos",
url="https://github.com/ppsimatikas/chainbase_python_sdk",
packages=find_packages(exclude=["tests"]),
packages=find_packages(include=["src"], exclude=["tests"]),
install_requires=[
"requests==2.32.3",
"pandas==2.1.3"
Expand Down
1 change: 1 addition & 0 deletions src/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.0.1"

0 comments on commit 2577543

Please sign in to comment.