Skip to content

Commit

Permalink
Add missing descriptions to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
koenvo committed Oct 9, 2024
1 parent f037de9 commit 19fcaec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Ingestify focus' on Ingestion of data.
2. All available `Datasets` are compared with what's already fetched, and if it's changed (using a `FetchPolicy`)
3. A `TaskQueue` is filled with `Tasks` to fetch all missing or stale `Datasets`

<img src="docs/overview.svg" />
<img src="https://raw.githubusercontent.com/PySport/ingestify/refs/heads/main/docs/overview.svg" />

- [Source](blob/main/ingestify/domain/models/source.py) is the main entrance from Ingestify to external sources. A Source must always define:
- `discover_datasets` - Creates a list of all available datasets on the Source
Expand Down
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,18 @@ def setup_package():
builtins.__INGESTIFY_SETUP__ = True
import ingestify

with open("README.md", "r") as f:
readme = f.read()

setup(
name="ingestify",
version=ingestify.__version__,
author="Koen Vossen",
author_email="[email protected]",
license="AGPL",
description="Standardizing soccer tracking- and event data",
long_description=readme,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(exclude=["tests"]),
package_data={
"": package_files("ingestify/static"),
Expand Down

0 comments on commit 19fcaec

Please sign in to comment.