Skip to content

Commit c19b1ed

Browse files
authored
Merge pull request #8 from reactome/develop
Develop
2 parents 04923cb + 5c4cb36 commit c19b1ed

3 files changed

Lines changed: 27 additions & 6 deletions

File tree

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,18 @@ CI | Branch | Build Status
44
---|---------|-------------
55
Travis | master | [![Build Status](https://travis-ci.com/reactome/reactome2py.svg?branch=master)](https://travis-ci.com/reactome/reactome2py)
66

7+
[![reactome2py from PyPI](https://img.shields.io/pypi/v/reactome2py.svg)](https://pypi.python.org/pypi/reactome2py/)[![Supported Python Versions](https://img.shields.io/pypi/pyversions/reactome2py.svg)](https://pypi.python.org/pypi/reactome2py/)
8+
[![Anaconda-Server Badge](https://anaconda.org/reactome/reactome2py/badges/version.svg)](https://anaconda.org/reactome/reactome2py)
9+
710
Python client for Reactome content and analysis services API calls.
811

912
#### Installation
1013

11-
- PyPI install using pip [![reactome2py from PyPI](https://img.shields.io/pypi/v/reactome2py.svg)](https://pypi.python.org/pypi/reactome2py/)
14+
- PyPI install using pip
1215
```
1316
(sudo) pip install reactome2py
1417
```
18+
1519
- from source
1620
``` shell script
1721
git clone repo

docs/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<meta http-equiv="refresh" content="0; url=./build/html/index.html" />

setup.py

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from setuptools import setup, find_packages
2+
import json
23

3-
__version__ = '0.0.3'
4+
__version__ = '0.0.4'
45

56
with open("README.md", "r") as f:
67
long_description = f.read()
@@ -9,10 +10,13 @@
910
name='reactome2py',
1011
version=__version__,
1112
description='Python client for Reactome content and analysis service API calls.',
13+
long_description=long_description,
14+
long_description_content_type='text/markdown',
1215
url='https://github.com/reactome/reactome2py',
1316
author='Nasim Sanati',
1417
author_email='nasim@plenary.org',
1518
license='Apache',
19+
1620
packages=find_packages(),
1721
entry_points={
1822
'console_scripts': ['reactome2py = reactome2py.__main__:main']
@@ -21,10 +25,22 @@
2125
'requests',
2226
],
2327
extras_require={
24-
'pandas': ["pandas==0.24.2"],
25-
'json': ["json5==0.8.4"],
28+
'pandas': ['pandas==0.24.2'],
29+
'json': ['json5==0.8.4'],
2630
},
2731
tests_require=['pytest'],
28-
long_description=long_description,
29-
long_description_content_type='text/markdown',
32+
classifiers=[
33+
'Programming Language :: Python',
34+
'Programming Language :: Python :: 3.6',
35+
'Programming Language :: Python :: 3.7',
36+
'License :: OSI Approved :: Apache Software License',
37+
'Intended Audience :: Developers',
38+
'Intended Audience :: Science/Research',
39+
'License :: OSI Approved :: Apache Software License',
40+
'Topic :: Software Development :: Libraries',
41+
'Topic :: Scientific/Engineering',
42+
'Topic :: Scientific/Engineering :: Bio-Informatics'
43+
],
44+
platforms=['any'],
45+
python_requires='>=3.6',
3046
)

0 commit comments

Comments
 (0)