Skip to content

Commit

Permalink
add deps
Browse files Browse the repository at this point in the history
  • Loading branch information
owent committed Apr 8, 2018
1 parent 6afcffc commit 2910c14
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@ build:
image: latest

python:
version: 3
version: 3
setup_py_install: true
pip_install: true
extra_requirements:
- tests
- docs
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ recommonmark>=0.4.0
cloud-sptheme>=1.9.4
readthedocs-sphinx-ext>=0.5.9
# NOTE: switched to custom branch until https://github.com/dreamhost/sphinxcontrib-fulltoc/issues/10 is fixed
# sphinxcontrib-fulltoc>=1.2.0
git+https://github.com/eli-collins/sphinxcontrib-fulltoc.git
sphinxcontrib-fulltoc>=1.2.0
# git+https://github.com/eli-collins/sphinxcontrib-fulltoc.git
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from setuptools import setup

setup(
name="my_package",
# (...)
install_requires=[
'pip >= 9.0.3',
'setuptools >= 39.0.1'],
extras_require={
'tests': [],
'docs': [
'sphinx >= 1.7.2']}
)

0 comments on commit 2910c14

Please sign in to comment.