Я создаю python 3.7.2 пакет, который затем устанавливаю в другом месте, внутри virtualenv для использования в приложении. В моем пакете несколько модулей с зависимостями (импортом) между ними. Я не могу понять, как заставить пакет загружаться правильно, чтобы я мог использовать зависимые модули в пакете.
Каталог пакета
root
\- foo # my package
\- __init__.py # empty or with from .helper_class import HelperClass
\- helper_class.py
\- my_class.py # imports helper_class
setup.py
Каталог приложения
app
\- main.py # from foo.my_class import MyClass
\- venv
Когда my_class
не импортирует helper_class
, я могу просто упаковать, установить и запустить main.py
. Когда я импортирую helper_class
в my_class
, я получаю ModuleNotFoundError
.
$ python main.py
Traceback (most recent call last):
File "main.py", line 1, in <module>
from foo.my_class import MyClass
File "/Users/XXXXXX/tmp/foo/my_class.py", line 1, in <module>
from helper_class import HelperClass
ModuleNotFoundError: No module named 'helper_class'
Я пробовал пустой __init__.py
, а также добавляю from .helper_class import HelperClass
к __init__.py
. Я добавил .s к ссылкам повсюду, но без любви.
Должно быть что-то предельно очевидное, что я скучаю.
app / main.py
o = MyClass()
print(o.get_att())
foo / my_class.py
from helper_class import HelperClass
class MyClass():
def __init__(self):
self.att = 123
def get_att(self):
return self.att
foo / helper_class.py
class HelperClass():
def __init__(self):
pass
Setup. py ниже (взято из https://github.com/navdeep-G/setup.py)
name=NAME,
version=about['__version__'],
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=['foo', ],
# packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
# If your package is a single module, use this instead of 'packages':
# py_modules=['mypackage'],
# entry_points={
# 'console_scripts': ['mycli=mymodule:cli'],
# },
install_requires=REQUIRED,
extras_require=EXTRAS,
include_package_data=True,
license='MIT',
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
# $ setup.py publish support.
# cmdclass={
# 'upload': UploadCommand,
# },
)