How can I specify a version for private repos in my setup.py file so that only this version is used?
from setuptools import setup, find_packages
setup(
name="my_module"
version="1.0.4"
install_requires=[
"requests==2.20.0",
"test @ git+ssh://git@xxxx/xxxxx/test.git",
],
// etc.
)
Does my test git project have to have any properties so that I can read out the version? At the moment I only use the version field in setup.py
from setuptools import find_packages, setup
setup(
name="test",
version="0.5.1",
//etc.
)