Skip to content

Commit

Permalink
rtd requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
npy0 committed May 9, 2020
1 parent cea7aff commit ed69cd0
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 57 deletions.
4 changes: 4 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ version: 2
sphinx:
configuration: docs/conf.py

python:
version: 3.7
install:
- requirements: docs/requirements.txt
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
language: python
- "3.6"
install:
- pip install -U requests mnemonic
- python setup.py build_ext --inplace
Expand Down
20 changes: 0 additions & 20 deletions docs/Makefile

This file was deleted.

1 change: 0 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@

exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']

master_doc = 'index'
#autodoc_member_order = 'bysource'
35 changes: 0 additions & 35 deletions docs/make.bat

This file was deleted.

3 changes: 3 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
requests
mnemonic
sphinx>=3
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,7 @@ def get_ed25519_blake2b_ext_kwargs(use_vc=False, platform=None):
Extension(**get_ed25519_blake2b_ext_kwargs(
use_vc=True if env.get('USE_VC') == '1' else False,
platform=sys.platform))
])
],
extras_require={
'full': ['requests', 'websocket-client', 'pysocks', 'mnemonic']
})

0 comments on commit ed69cd0

Please sign in to comment.