Skip to content

Commit

Permalink
Test distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
fpingas committed Mar 28, 2023
1 parent ac6dd7a commit a751260
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ jobs:
set -euxo pipefail
python3 -m pip install --upgrade pip
python3 -m pip install build
python3 -m pip install build twine
python3 -m build
python3 -m twine check dist/*
test-suite:
runs-on: ubuntu-20.04
Expand Down
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,13 @@ def requirements_from_pip(filename='requirements.txt'):
all_deps = all_models_deps + tools_deps
devel_deps = test_deps + all_deps

with open("README.md", "r") as fh:
long_description = fh.read()

setup(name=MODULE_NAME,
description="Functional machine learning",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/nubank/{:s}'.format(REPO_NAME),
python_requires='>=3.6.2,<3.10',
author="Nubank",
Expand Down

0 comments on commit a751260

Please sign in to comment.