diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b5a8659 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,29 @@ +[build-system] +requires = ["setuptools", "wheel"] + +[project] +name = "msfinance" +version = "0.1.0" +authors = [ + { name = "Jimmy Situ", email = "web@jimmystone.com"} +] +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" \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..1929637 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,6 @@ +sqlite3 +requests +pandas +selenium +webdriver_manager +