Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.

Commit 87fdf13

Browse files
committed
adjust for readthedocs install
Use the extra requirements to split cyvcf
1 parent 15144f7 commit 87fdf13

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def __getattr__(cls, name):
9797

9898
# -- Options for HTML output ----------------------------------------------
9999

100-
html_title = 'Beacon-python API'
100+
html_title = 'beacon-python API'
101101

102102
# The theme to use for HTML and HTML Help pages. See the documentation for
103103
# a list of builtin themes.

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,11 @@
3939
'Programming Language :: Python :: 3.7',
4040
],
4141
install_requires=['asyncpg', 'aiohttp', 'authlib', 'aiohttp_cors',
42-
'jsonschema', 'gunicorn>=20.0.1', 'aiohttp',
43-
'ujson', "cyvcf2==0.10.1; python_version < '3.7'",
44-
"cyvcf2; python_version >= '3.7'", 'uvloop',
45-
'aiocache', 'ujson', 'aiomcache', 'Cython',
46-
'numpy'],
42+
'jsonschema', 'gunicorn>=20.0.1',
43+
'ujson', 'uvloop', 'aiocache', 'ujson', 'aiomcache'],
4744
extras_require={
45+
'vcf': ["cyvcf2==0.10.1; python_version < '3.7'", 'numpy',
46+
"cyvcf2; python_version >= '3.7'", 'Cython'],
4847
'test': ['coverage==4.5.4', 'pytest<5.4', 'pytest-cov',
4948
'coveralls', 'testfixtures', 'tox',
5049
'flake8', 'flake8-docstrings', 'asynctest', 'aioresponses'],

0 commit comments

Comments
 (0)