This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: pysetup create doesn't handle install requirements
Type: behavior Stage: resolved
Components: Distutils2 Versions: Python 3.3, 3rd party
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: eric.araujo Nosy List: alexis, eric.araujo, j1m, janjaapdriessen, tarek
Priority: normal Keywords: easy

Created on 2012-03-12 23:11 by janjaapdriessen, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg155514 - (view) Author: Jan-Jaap Driessen (janjaapdriessen) Date: 2012-03-12 23:11
Distutils2 pysetup can take an existing setuptools based project and convert it into the distutils2 setup.cfg syntax using `pysetup create`. The install requirements are not converted:

{{{
svn co svn+ssh://svn.zope.org/repos/main/zope.dublincore/trunk
pysetup create
}}}

The original dependencies in 'install_requires' in setup.py are not found in the resulting setup.cfg.
msg155908 - (view) Author: Alexis Metaireau (alexis) * (Python triager) Date: 2012-03-15 16:45
Thanks for reporting this, Jan-Jaap, 

I've marked this issue as easy, it's mostly a matter of looking at the passed parameter and outputing the list in the generated file, respecting the PEP 345 format (http://www.python.org/dev/peps/pep-0345/#requires-dist-multiple-use)

Do you want to work on this one?
History
Date User Action Args
2022-04-11 14:57:27adminsetgithub: 58483
2014-03-12 10:17:10eric.araujosetstatus: open -> closed
resolution: out of date
stage: needs patch -> resolved
2012-03-16 14:41:49eric.araujosetstage: needs patch
versions: + 3rd party, - Python 2.6, Python 2.7
2012-03-15 16:45:58alexissetkeywords: + easy

messages: + msg155908
2012-03-15 16:43:49alexissetdependencies: - Requirements are not properly copied into metatdata of dist-info
2012-03-15 16:42:26alexissetdependencies: + Requirements are not properly copied into metatdata of dist-info
2012-03-12 23:11:57janjaapdriessencreate