File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed
Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 11# Name the version of the code using x.x.x
2- __version__ = '0.0.1 '
2+ __version__ = '0.0.2 '
Original file line number Diff line number Diff line change 1+ from os import path
12from setuptools import setup as _setup
23from setuptools import find_packages as _find_packages
34from dataherb .version import __version__
45
6+ # read the contents of your README file
7+ __CWD__ = path .abspath (path .dirname (__file__ ))
8+ with open (path .join (__CWD__ , 'README.md' ), encoding = 'utf-8' ) as fp :
9+ PACKAGE_LONG_DESCRIPTION = fp .read ()
10+
11+
512PACKAGE_NAME = 'dataherb'
613PACKAGE_VERSION = __version__
714PACKAGE_DESCRIPTION = 'Get clean datasets from DataHerb to boost your data science and data analysis projects'
8- PACKAGE_LONG_DESCRIPTION = (
9- 'DataHerb is a project to list curated datasets. '
10- 'The dataherb python package makes it easy to search, preview, and load data into your projects.'
11- )
1215PACKAGE_URL = 'https://github.com/DataHerb/dataherb-python'
1316
1417def _requirements ():
@@ -20,6 +23,7 @@ def setup():
2023 version = PACKAGE_VERSION ,
2124 description = PACKAGE_DESCRIPTION ,
2225 long_description = PACKAGE_LONG_DESCRIPTION ,
26+ long_description_content_type = 'text/markdown' ,
2327 url = PACKAGE_URL ,
2428 author = 'Lei Ma' ,
2529
You can’t perform that action at this time.
0 commit comments