Skip to content

Commit

Permalink
Update setup.py and pyproject.toml to remove pandas dep
Browse files Browse the repository at this point in the history
  • Loading branch information
gwenwindflower committed Apr 10, 2024
1 parent 5b6472b commit 8720ecb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "jafgen"
version = "0.4.12"
authors = [{ name = "gwenwindflower", email = "gwenwindflower@gmail.com" }]
dependencies = ["numpy", "pandas", "Faker", "typer[all]"]
dependencies = ["numpy", "Faker", "typer"]
description = "A synthetic data generator CLI for a fictional Jaffle Shop"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
long_description_content_type="text/markdown",
package_dir={"jafgen": "jafgen"},
entry_points={"console_scripts": ["jafgen = jafgen.cli:app"]},
install_requires=["numpy", "pandas", "Faker", "typer[all]"],
install_requires=["numpy", "Faker", "typer"],
)

0 comments on commit 8720ecb

Please sign in to comment.