33 lines
721 B
TOML
33 lines
721 B
TOML
[project]
|
|
name = "github_datapipe"
|
|
version = "0.1.0"
|
|
description = "This project extracts github data."
|
|
authors = [
|
|
{name = "HirBrahmbhatt"}
|
|
]
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"requests (>=2.33.1,<3.0.0)",
|
|
"pandas (>=3.0.2,<4.0.0)",
|
|
"pyarrow (>=23.0.1,<24.0.0)",
|
|
"python-dotenv (>=1.2.2,<2.0.0)",
|
|
"pytest (>=9.0.3,<10.0.0)",
|
|
"requests-mock (>=1.12.1,<2.0.0)",
|
|
"click (>=8.3.3,<9.0.0)"
|
|
]
|
|
|
|
[project.scripts]
|
|
github-datapipe = "github_datapipe.cli:main"
|
|
|
|
[tool.poetry]
|
|
packages = [
|
|
{ include = "github_datapipe", from = "src" }
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|