mirror of https://github.com/nucypher/nucypher.git
Respond to RFCs in PR #1931
parent
851facceba
commit
3143a737de
1
Makefile
1
Makefile
|
@ -25,7 +25,6 @@ build-docs:
|
|||
# sphinx-apidoc [OPTIONS] -o <OUTPUT_PATH> <MODULE_PATH> [EXCLUDE_PATTERN …]
|
||||
$(MAKE) -C docs clean
|
||||
$(MAKE) -C docs html
|
||||
# $(MAKE) -C docs html
|
||||
|
||||
validate-docs: build-docs
|
||||
# Required dependencies from docs/requirements.txt
|
||||
|
|
6
setup.py
6
setup.py
|
@ -99,8 +99,8 @@ class PostDevelopCommand(develop):
|
|||
|
||||
def read_requirements(path):
|
||||
with open(os.path.join(BASE_DIR, path)) as f:
|
||||
_PIPENV_FLAGS, *REQUIREMENTS = f.read().split('\n')
|
||||
return REQUIREMENTS
|
||||
_pipenv_flags, *requirements = f.read().split('\n')
|
||||
return requirements
|
||||
|
||||
|
||||
INSTALL_REQUIRES = read_requirements('requirements.txt')
|
||||
|
@ -131,7 +131,7 @@ setup(
|
|||
|
||||
# Requirements
|
||||
python_requires='>=3',
|
||||
setup_requires=['pytest-runner', 'setuptools-markdown'],
|
||||
setup_requires=['setuptools-markdown'],
|
||||
install_requires=INSTALL_REQUIRES,
|
||||
extras_require=EXTRAS,
|
||||
|
||||
|
|
Loading…
Reference in New Issue