Skip to content

Commit

Permalink
Add more for pip package
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmysitu committed Oct 31, 2023
1 parent e99c0dc commit fe0629d
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[build-system]
requires = ["setuptools", "wheel"]

[project]
name = "msfinance"
version = "0.1.0"
authors = [
{ name = "Jimmy Situ", email = "[email protected]"}
]
description = "msfinance offers Pythonic way to download stocks financial data from morningstar.com"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
requires-python = ">=3.8"
license = {file = "LICENSE"}
dependencies = [
"sqlite3",
"requests",
"pandas",
"selenium",
"webdriver_manager"
]

[project.urls]
"Homepage" = "https://github.com/jimmysitu/msfinance"
"Bug Tracker" = "https://github.com/jimmysitu/msfinance/issues"
6 changes: 6 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
sqlite3
requests
pandas
selenium
webdriver_manager

0 comments on commit fe0629d

Please sign in to comment.