Skip to content

Commit

Permalink
Merge pull request #7 from drewmee/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
drewmee authored Aug 19, 2020
2 parents 923a0e4 + 4a6cbf0 commit 2cc779e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
13 changes: 9 additions & 4 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
build:
image: latest
version: 2

python:
version: 3.6
setup_py_install: true
version: 3.6
install:
- method: pip
path: .
extra_requirements:
- docs
- method: setuptools
path: .
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/drewmee/PyEEM/blob/master/LICENSE)
[![CircleCI](https://circleci.com/gh/drewmee/PyEEM.svg?style=shield&circle-token=ccdb16078dcb8ee4e4c9b923f547fc7cb2742aae)](https://app.circleci.com/pipelines/github/drewmee/PyEEM)
[![Read the Docs](https://readthedocs.org/projects/drewmee-demo/badge/?version=latest)](https://www.youtube.com/watch?v=oHg5SJYRHA0)
[![Read the Docs](https://readthedocs.org/projects/drewmee-demo/badge/?version=latest)](https://pyeem.readthedocs.io/)
<!--- Badge for supported python versions https://img.shields.io/pypi/pyversions/pyeem -->
<!--- Badge for PyPI package https://img.shields.io/pypi/v/pyeem -->
<!--- Badge for codecov -->
Expand All @@ -17,7 +17,7 @@ Install via pip:

## Documentation

Full documentation can be found [here](https://www.youtube.com/watch?v=oHg5SJYRHA0).
Full documentation can be found [here](https://pyeem.readthedocs.io/).

## Dependencies for Local Development

Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import setuptools

__version__ = "1.0.8"
__version__ = "0.1.0"

with open("README.md", "r") as fh:
long_description = fh.read()
Expand All @@ -26,8 +26,9 @@
"Topic :: Scientific/Engineering :: Chemistry",
],
test_suite="tests",
python_requires='>3.5, <3.8',
install_requires=[
"numpy>=1.18.5",
"numpy<1.19.0,>=1.18.5",
"pandas>=1.0.5",
"h5py>=2.10.0",
"tables>=3.6.1",
Expand All @@ -37,7 +38,7 @@
"urllib3>=1.25.9",
"boto3>=1.14.33",
"tqdm>=4.48.0",
"scipy>=1.4.1",
"scipy==1.4.1",
"tensorflow>=2.2.0",
],
extras_require={
Expand Down

0 comments on commit 2cc779e

Please sign in to comment.