Skip to content

Commit

Permalink
Update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
tuhinmallick authored Sep 18, 2024
1 parent cf28d70 commit a581e0d
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,38 @@
[tool.poetry]
name = "insidertrader"
version = "0.1.3" # Increment this version as needed
version = "0.1.0" # Update as necessary
description = "A tool for insider trading analysis."
authors = ["Tuhin Mallick <contact@tuhinmallick.com>"]
license = "MIT" # Replace with your project's license
license = "MIT" # Update as per your project's license
readme = "README.md"
homepage = "https://github.com/tuhinmallick/InsiderTrader"
repository = "https://github.com/tuhinmallick/InsiderTrader"
keywords = ["trading", "finance", "insider trading"]
categories = ["Category :: Financial :: Investment"]

[tool.poetry.dependencies]
python = "^3.11"
# Add your project dependencies here, for example:
requests = "^2.28.1"
python = "^3.10"
brotlipy = "0.7.0"
cffi = "1.15.1"
cryptography = "38.0.4"
idna = "3.4"
libffi = "3.4.2"
requests = "2.28.1"
ruamel.yaml = "0.17.21"
ruamel.yaml.clib = "0.2.6"
setuptools = "65.6.3"
toolz = "0.12.0"
tqdm = "4.64.1"
tzdata = "2022g"
urllib3 = "1.26.14"
zstandard = "0.18.0"

[tool.poetry.dev-dependencies]
flake8 = "^7.0.0"
pytest = "^8.0.0"
# Add other development dependencies as needed
flake8 = "^4.0"
pytest = "^7.0"
pycparser = "2.21"
pyopenssl = "22.0.0"
wheel = "0.37.1"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit a581e0d

Please sign in to comment.