Skip to content

Commit

Permalink
[fix] Add long description to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
tamohannes committed Jun 26, 2024
1 parent e4f9d77 commit 15cec55
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip --upgrade install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
Expand Down
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os

from setuptools import find_packages, setup
from pathlib import Path

here = os.path.abspath(os.path.dirname(__file__))

Expand All @@ -18,11 +19,16 @@
DESCRIPTION = "ML framework"
VERSION = __version__
REQUIRES_PYTHON = ">=3.10.0"
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()


setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown'
python_requires=REQUIRES_PYTHON,
install_requires=requirements,
packages=find_packages("."),
Expand Down
2 changes: 1 addition & 1 deletion urartu/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.1
2.0.2

0 comments on commit 15cec55

Please sign in to comment.