设置子模块依赖
setup with submodules dependencies
我们有一个 python 包,它也是一个 git 仓库。它取决于其他 python 包,它们本身 git 回购协议。我们制作了前者的后者 git 子模块。
None 其中 public,所以没有 PyPI。
None 与使用子模块依赖项安装相关的其他问题符合我们的模式。我的问题不是关于使用 setuptools
查找(子)包,也不是关于相对导入。
这是我们的结构:
package-repo/
setup.py
setup.cfg
README.md
.gitignore
.gitmodules
.git/
submodule-repo/
.git/
.gitignore
setup.py
setup.cfg
README.md
submodule/
__init__.py
moduleX.py
moduleY.py
package/
__init__.py
moduleA.py
moduleB.py
subpackage1/
与 requirements.txt 的情况一样,我天真地认为下面的事情会奏效:
from setuptools import setup
setup(name='package',
version='0.4.1',
description='A package depending on other self made packages',
url='git.ownnetwork.com',
author='wli',
author_email='wli@',
license='Proprietary',
packages=['package','package.subpackage1'],
include_package_data=True,
python_requires='>=3.7',
classifiers=[
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=["SQLAlchemy",
"pandas",
"./submodule-repo"])
没用。
另一种方法是在 packages
中添加子模块并在 package_dir
中指明其目录。好吧,它没有那么好用,如果在安装依赖模块时无法安装,那么在“子模块”中制作一个 setup.py 有什么意义?
我只想安装它而不必将它放在 PyPI 上或创建虚拟 PyPI 服务器,这太过分了,或者必须在 README.md 中指示要做什么(即 pip install ./submodule-repo/
),这不优雅。
怎么走?我是否在 distutils 或 setuptools 文档中遗漏了它?
您需要指定从哪里安装子模块。
install_requires=[
'SQLAlchemy',
'pandas',
# Your private repository module
'<dependency_name> @ git+ssh://git@github.com/<user_name>/<repo_name>@<branch>'
]
我们有一个 python 包,它也是一个 git 仓库。它取决于其他 python 包,它们本身 git 回购协议。我们制作了前者的后者 git 子模块。 None 其中 public,所以没有 PyPI。
None 与使用子模块依赖项安装相关的其他问题符合我们的模式。我的问题不是关于使用 setuptools
查找(子)包,也不是关于相对导入。
这是我们的结构:
package-repo/
setup.py
setup.cfg
README.md
.gitignore
.gitmodules
.git/
submodule-repo/
.git/
.gitignore
setup.py
setup.cfg
README.md
submodule/
__init__.py
moduleX.py
moduleY.py
package/
__init__.py
moduleA.py
moduleB.py
subpackage1/
与 requirements.txt 的情况一样,我天真地认为下面的事情会奏效:
from setuptools import setup
setup(name='package',
version='0.4.1',
description='A package depending on other self made packages',
url='git.ownnetwork.com',
author='wli',
author_email='wli@',
license='Proprietary',
packages=['package','package.subpackage1'],
include_package_data=True,
python_requires='>=3.7',
classifiers=[
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=["SQLAlchemy",
"pandas",
"./submodule-repo"])
没用。
另一种方法是在 packages
中添加子模块并在 package_dir
中指明其目录。好吧,它没有那么好用,如果在安装依赖模块时无法安装,那么在“子模块”中制作一个 setup.py 有什么意义?
我只想安装它而不必将它放在 PyPI 上或创建虚拟 PyPI 服务器,这太过分了,或者必须在 README.md 中指示要做什么(即 pip install ./submodule-repo/
),这不优雅。
怎么走?我是否在 distutils 或 setuptools 文档中遗漏了它?
您需要指定从哪里安装子模块。
install_requires=[
'SQLAlchemy',
'pandas',
# Your private repository module
'<dependency_name> @ git+ssh://git@github.com/<user_name>/<repo_name>@<branch>'
]