Commit 898482d0 authored by Kirill Smelkov's avatar Kirill Smelkov

setup: Fix typos

parent acf7e91d
......@@ -84,7 +84,7 @@ class build_py(_build_py):
def build_packages(self):
_build_py.build_packages(self)
# emit std namespaceing mantra to wendelin/__init__.py
# emit std namespacing mantra to wendelin/__init__.py
self.initfile = self.get_module_outfile(self.build_lib, ('wendelin',), '__init__')
with open(self.initfile, 'w') as f:
f.write("# this is a namespace package (autogenerated)\n")
......@@ -94,7 +94,7 @@ class build_py(_build_py):
def get_outputs(self, include_bytecode=1):
outputs = _build_py.get_outputs(self, include_bytecode)
# add synthethized __init__.py to outputs, so that `pip uninstall`
# add synthesized __init__.py to outputs, so that `pip uninstall`
# works without leaving it
outputs.append(self.initfile)
if include_bytecode:
......@@ -200,7 +200,7 @@ def git_lsfiles(dirname):
# contains generated SOURCES.txt and sdist, if run from unpacked tarball, would
# reuse that information.
#
# (to setuptools - beause we have to use some distribution and we already
# (to setuptools - because we have to use some distribution and we already
# depend on setuptools)
if os.path.exists('.git'): # FIXME won't work if we are checked out as e.g. submodule
register_as_entrypoint(git_lsfiles, 'git', 'setuptools.file_finders', 'setuptools')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment