File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed
Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
2+ from codecs import open
3+ from os import path
24
3- readme_note = """\
4- .. note::
5-
6- For the latest source, discussion, etc, please visit the
7- `GitHub repository <https://github.com/m3dev/redshells>`_\n \n
8- """
9-
10- with open ('README.md' ) as f :
11- long_description = readme_note + f .read ()
5+ here = path .abspath (path .dirname (__file__ ))
6+ with open (path .join (here , 'README.md' ), encoding = 'utf-8' ) as f :
7+ long_description = f .read ()
128
139install_requires = [
1410 'luigi' ,
3026 setup_requires = ['setuptools_scm' ],
3127 description = 'Tasks which are defined using gokart.TaskOnKart. The tasks can be used with data pipeline library "luigi".' ,
3228 long_description = long_description ,
29+ long_description_content_type = "text/markdown" ,
3330 author = 'M3, inc.' ,
3431 url = 'https://github.com/m3dev/redshells' ,
3532 license = 'MIT License' ,
You can’t perform that action at this time.
0 commit comments