Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #7

Merged
merged 5 commits into from
Aug 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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