Skip to content

Commit

Permalink
fix(packaging): added long description and correct read version (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
portellaa authored Oct 15, 2022
1 parent e5c3aef commit 7beb3fe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@
from setuptools import setup, find_packages

here = Path(__file__).parent.resolve()
root = here.parent.parent.resolve()

version = (here / 'VERSION').read_text().rstrip("\n")
long_description = (root / 'README.md').read_text(encoding='utf-8')
version = (root / 'VERSION').read_text().rstrip("\n")

setup(name='ydata-core',
version=version,
description='Core functionality for all python packages at YData',
long_description=long_description,
long_description_content_type='text/markdown',
author='YData',
author_email='[email protected]',
classifiers=[
Expand Down

0 comments on commit 7beb3fe

Please sign in to comment.