Update config paths

This makes the docs build again:
cd doc
make SOURCEDIR=ev3dev html
make SOURCEDIR=lpf2 html
This commit is contained in:
Laurens Valk
2019-05-09 14:40:05 +02:00
parent c916485666
commit 3a42c8f870
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ def get_config():
cfg.VCS = "git"
cfg.style = "pep440"
cfg.tag_prefix = "v"
cfg.parentdir_prefix = "fake-pybricks-"
cfg.parentdir_prefix = "pybricks-api-"
cfg.versionfile_source = "pybricks/_version.py"
cfg.verbose = False
return cfg
+1 -1
View File
@@ -9,4 +9,4 @@ style = pep440
versionfile_source = pybricks/_version.py
versionfile_build = pybricks/_version.py
tag_prefix = v
parentdir_prefix = fake-pybricks-
parentdir_prefix = pybricks-api-
+2 -2
View File
@@ -17,14 +17,14 @@ with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='fake-pybricks',
name='pybricks-api',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Pybricks',
long_description=long_description,
url='https://github.com/pybricks',
author='Laurens Valk and David Lechner',
author_email='laurensvalk@gmail.com',
author_email='laurens@pybricks.com',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
+1 -1
View File
@@ -19,7 +19,7 @@
#
import os
import sys
sys.path.insert(0, os.path.abspath('../../lib/fake-pybricks/pybricks'))
sys.path.insert(0, os.path.abspath('../../api/pybricks'))
import _version # noqa E402