Skip to content

Commit

Permalink
Update setup.py and pyproject.toml with description and README info
Browse files Browse the repository at this point in the history
  • Loading branch information
gwenwindflower committed Apr 7, 2024
1 parent 8e841be commit 723428b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ build-backend = "setuptools.build_meta"

[project]
name = "jaffle-shop-generator"
version = "0.4.1"
version = "0.4.6"
authors = [{ name = "gwenwindflower", email = "[email protected]" }]
dependencies = ["numpy", "pandas", "Faker", "typer[all]"]

description = "A synthetic data generator CLI for a fictional Jaffle Shop"
readme = "README.md"
license = { file = "LICENSE" }
[tool.setuptools.packages.find]
exclude = ["*.tests", "*.tests.*", "tests.*", "tests"]

Expand Down
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"],
),
authors=["gwenwindflower", "drewbanin"],
description="A synthetic data generator CLI for a fictional Jaffle Shop",
long_description=open("README.md").read(),
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]"],
Expand Down

0 comments on commit 723428b

Please sign in to comment.