如何使用 setuptools 指定依赖项?
How to specify dependencies using setuptools?
我的设置文件
setup(
name = 'arkan',
version = '1.0a',
packages=find_packages(exclude=["contrib", "docs", "test*"]),
install_requires=['demjson', 'simplejson', 'pytz', 'datetime', 'Request', 'urlopen']
)
我提交给了 pypitest (https://testpypi.python.org/pypi)。当我尝试使用以下方式安装我的包时:
pip install -i https://testpypi.python.org/pypi arkan
Collecting arkan
.....
Collecting demjson(from arkan)
Could not find a version that satisfies the requirement demjson(from arkan) (from versions: )
No matching distribution found for demjson(from arkan)
我对所有包都遇到了同样的错误。我也尝试添加版本(demjson>=2.2.0
)但没有运气。
但是,当我从命令行执行 pip install demjson
时,它安装正确。我认为 install-requires
只是 运行 pip install
每个依赖项。我错了吗?
我尝试在 requirements.txt 上添加这些依赖项,但 pip install
完全忽略了整个文件。
如何指定我的 setup.py
文件的依赖项以便正确安装?
testpypi
回购中似乎缺少很多软件包,例如 demjson
。
我的设置文件
setup(
name = 'arkan',
version = '1.0a',
packages=find_packages(exclude=["contrib", "docs", "test*"]),
install_requires=['demjson', 'simplejson', 'pytz', 'datetime', 'Request', 'urlopen']
)
我提交给了 pypitest (https://testpypi.python.org/pypi)。当我尝试使用以下方式安装我的包时:
pip install -i https://testpypi.python.org/pypi arkan
Collecting arkan
.....
Collecting demjson(from arkan)
Could not find a version that satisfies the requirement demjson(from arkan) (from versions: )
No matching distribution found for demjson(from arkan)
我对所有包都遇到了同样的错误。我也尝试添加版本(demjson>=2.2.0
)但没有运气。
但是,当我从命令行执行 pip install demjson
时,它安装正确。我认为 install-requires
只是 运行 pip install
每个依赖项。我错了吗?
我尝试在 requirements.txt 上添加这些依赖项,但 pip install
完全忽略了整个文件。
如何指定我的 setup.py
文件的依赖项以便正确安装?
testpypi
回购中似乎缺少很多软件包,例如 demjson
。