We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5c3aef commit 7beb3feCopy full SHA for 7beb3fe
src/core/setup.py
@@ -2,12 +2,16 @@
2
from setuptools import setup, find_packages
3
4
here = Path(__file__).parent.resolve()
5
+root = here.parent.parent.resolve()
6
-version = (here / 'VERSION').read_text().rstrip("\n")
7
+long_description = (root / 'README.md').read_text(encoding='utf-8')
8
+version = (root / 'VERSION').read_text().rstrip("\n")
9
10
setup(name='ydata-core',
11
version=version,
12
description='Core functionality for all python packages at YData',
13
+ long_description=long_description,
14
+ long_description_content_type='text/markdown',
15
author='YData',
16
author_email='[email protected]',
17
classifiers=[
0 commit comments