Skip to content
This repository has been archived by the owner on May 13, 2019. It is now read-only.

Commit

Permalink
Attempt #1 at getting RTD to work.
Browse files Browse the repository at this point in the history
Signed-off-by: Laura <[email protected]>
  • Loading branch information
Fuyukai committed Jul 29, 2017
1 parent 4ee3743 commit a4bc193
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# RTD configuration

python:
# asyncqlio requires 3.5+
version: 3.5
# install with pip to get version number
pip_install: true
# install doc requirements
extra_requirements:
- docs
# install all backends for autodoc
- postgres+asyncpg
- mysql+aiomysql
12 changes: 12 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@
"cached_property==1.3.0",
"asyncio_extras==1.3.0"
],
extras_require={
"docs": [
"sphinx>=1.5.0",
"sphinxcontrib-asyncio"
],
"postgres+asyncpg": [
"asyncpg>=0.12.0"
],
"mysql+aiomysql": [
"aiomysql>=0.0.9",
]
},
python_requires=">=3.5.2",
entry_points={
"console_scripts": ["asql-migrate=asyncqlio.orm.ddl.migration_tool:cli"]
Expand Down

0 comments on commit a4bc193

Please sign in to comment.