Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhuoqing Fang committed Jun 3, 2018
1 parent 80299ea commit 9354b76
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ Or use ``get_library_name`` function inside python console.
Bug Report
~~~~~~~~~~~~~~~~~~~~~~~~~~~

If you would like to report any bugs when you running gseapy, don't hesitate to create an issue on github here, or email me: fangzhuoqing@sibs.ac.cn
If you would like to report any bugs when you running gseapy, don't hesitate to create an issue on github here, or email me: fzq518@gmail.com


To get help of GSEAPY
Expand Down
2 changes: 1 addition & 1 deletion gseapy/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# or args = argparser.parse_args() will throw bugs!!!


__version__ = '0.9.3'
__version__ = '0.9.4'

def main():
"""The Main function/pipeline for GSEApy."""
Expand Down
12 changes: 5 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@



__version__='0.9.3'
__version__='0.9.4'

if sys.argv[-1] == 'publish':
os.system("python setup.py sdist bdist_wheel register upload")
Expand Down Expand Up @@ -50,23 +50,21 @@ def readme():
'Topic :: Software Development :: Libraries'],
keywords= ['Gene Ontology', 'GO','Biology', 'Enrichment',
'Bioinformatics', 'Computational Biology',],
url='https://github.com/BioNinja/gseapy',
url='https://github.com/zqfang/gseapy',
author='Zhuoqing Fang',
author_email='fangzhuoqing@sibs.ac.cn',
author_email='fzq518@gmail.com',
license='MIT',
packages=['gseapy'],
install_requires=[
'numpy>=1.13.0',
'pandas>=0.16',
'matplotlib>=1.4.3',
'beautifulsoup4>=4.4.1',
'requests',
'lxml',
'html5lib',],
'requests'],
entry_points={'console_scripts': ['gseapy = gseapy.__main__:main'],},
tests_require=['pytest'],
cmdclass = {'test': PyTest},
zip_safe=False,
download_url='https://github.com/BioNinja/gseapy',)
download_url='https://github.com/zqfang/gseapy',)

__author__ = 'Zhuoqing Fang'

0 comments on commit 9354b76

Please sign in to comment.