File tree 5 files changed +8
-8
lines changed
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 34
34
35
35
# setup.py files
36
36
* .egg-info
37
+ dist /
37
38
38
39
# coverage
39
40
.coverage
Original file line number Diff line number Diff line change 3
3
[ ![ Build Status] ( https://travis-ci.org/tinosulzer/PyBaMM.svg?branch=master )] ( https://travis-ci.org/tinosulzer/PyBaMM )
4
4
[ ![ Documentation Status] ( https://readthedocs.org/projects/pybamm/badge/?version=latest )] ( https://pybamm.readthedocs.io/en/latest/?badge=latest )
5
5
[ ![ codecov] ( https://codecov.io/gh/tinosulzer/PyBaMM/branch/master/graph/badge.svg )] ( https://codecov.io/gh/tinosulzer/PyBaMM )
6
- [ ![ Binder] ( https://mybinder.org/badge_logo.svg )] ( https://mybinder.org/v2/gh/tinosulzer/PyBaMM/master )
6
+ <!-- [](https://mybinder.org/v2/gh/tinosulzer/PyBaMM/master) -->
7
7
[ ![ Code style: black] ( https://img.shields.io/badge/code%20style-black-000000.svg )] ( https://github.com/ambv/black )
8
8
9
9
Original file line number Diff line number Diff line change 1
- python setup.py install
1
+ pip install .
Original file line number Diff line number Diff line change 1
1
-r requirements.txt
2
2
sphinx>=1.5,!=1.7.3
3
- sphinx-rtd-theme
Original file line number Diff line number Diff line change 1
- from setuptools import setup
1
+ try :
2
+ from setuptools import setup
3
+ except ImportError :
4
+ from distutils .core import setup
2
5
3
6
# Load text for description and license
4
7
with open ("README.md" ) as f :
23
26
"matplotlib>=2.0" ,
24
27
],
25
28
extras_require = {
26
- "docs" : [
27
- "sphinx-rtd-theme>=0.4" , # Nice theme for docs
28
- "sphinx>=1.5" , # For doc generation
29
- ],
29
+ "docs" : ["sphinx>=1.5" ], # For doc generation
30
30
"dev" : [
31
31
"flake8>=3" , # For code style checking
32
32
"jupyter" , # For documentation and testing
You can’t perform that action at this time.
0 commit comments