File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 42
42
set -euxo pipefail
43
43
44
44
python3 -m pip install --upgrade pip
45
- python3 -m pip install build
45
+ python3 -m pip install build twine
46
46
python3 -m build
47
+ python3 -m twine check dist/*
47
48
48
49
test-suite :
49
50
runs-on : ubuntu-20.04
Original file line number Diff line number Diff line change @@ -26,8 +26,13 @@ def requirements_from_pip(filename='requirements.txt'):
26
26
all_deps = all_models_deps + tools_deps
27
27
devel_deps = test_deps + all_deps
28
28
29
+ with open ("README.md" , "r" ) as fh :
30
+ long_description = fh .read ()
31
+
29
32
setup (name = MODULE_NAME ,
30
33
description = "Functional machine learning" ,
34
+ long_description = long_description ,
35
+ long_description_content_type = "text/markdown" ,
31
36
url = 'https://github.com/nubank/{:s}' .format (REPO_NAME ),
32
37
python_requires = '>=3.6.2,<3.10' ,
33
38
author = "Nubank" ,
You can’t perform that action at this time.
0 commit comments