My current setup.py (using setuptools) installs two things, one is tvdb_api
(an API wrapper), the other is tvnamer
(a command line script)
I wish to make the two available separately, so a user can do..
easy_install tvdb_api
..to only get the API wrapper, or..
easy_install tvnamer
..to install tvnamer (and tvdb_api, as a requirement)
Is this possible without having two separate setup.py
scripts? Can you have two separate PyPi packages that come from the same python setup.py upload
command..?