[issue29115] distutils.core.setup does not let people set 'bugtrack_url'.

2016-12-30 Thread Decorater
Decorater added the comment: In that case why does pypi.python.org not let me change that bug track url option or set it anymore? -- ___ Python tracker ___ _

[issue29115] distutils.core.setup does not let people set 'bugtrack_url'.

2016-12-30 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: I did some more research: setuptools didn't have this keyword either. It was added to PyPI at some point and then probably got picked up by some package authors as new "optional" keyword argument for setup(): http://stackoverflow.com/questions/14459828/how

[issue29115] distutils.core.setup does not let people set 'bugtrack_url'.

2016-12-30 Thread Berker Peksag
Berker Peksag added the comment: Again, this is not a distutils bug and it has already been reported to the setuptools maintainers: https://github.com/pypa/setuptools/issues/29 Quoting from the original report: > Currently setuptools.dist.Distribution passes the unfiltered collection > of keyw

[issue29115] distutils.core.setup does not let people set 'bugtrack_url'.

2016-12-30 Thread Decorater
Decorater added the comment: Except for the setup function, yeah. https://github.com/pypa/setuptools/blob/master/setuptools/__init__.py#L112 -- ___ Python tracker ___ __

[issue29115] distutils.core.setup does not let people set 'bugtrack_url'.

2016-12-30 Thread R. David Murray
R. David Murray added the comment: Except that setuptools monkey patches distutiles all over the place. So no, it isn't the same at all. -- nosy: +r.david.murray ___ Python tracker ___

[issue29115] distutils.core.setup does not let people set 'bugtrack_url'.

2016-12-30 Thread Decorater
Decorater added the comment: So basically what from setuptools import setup is really doing is the same as doing from distutils.core import setup -- ___ Python tracker ___ _

[issue29115] distutils.core.setup does not let people set 'bugtrack_url'.

2016-12-30 Thread Decorater
Decorater added the comment: The problem with setuptools on that is that they export their setup like so which uses the distutils setup by doing: setup = distutils.core.setup. That is how they are doing it. -- ___ Python tracker

[issue29115] distutils.core.setup does not let people set 'bugtrack_url'.

2016-12-30 Thread Berker Peksag
Berker Peksag added the comment: Marc-Andre is correct. bugtrack_url is a distribute/setuptools specific option. Please report your problem to them. -- nosy: +berker.peksag resolution: -> not a bug stage: -> resolved status: open -> closed ___ Pyth

[issue29115] distutils.core.setup does not let people set 'bugtrack_url'.

2016-12-30 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: I believe you need to report this problem to the setuptools maintainers. The stdlib distutils itself never defined a setup() argument 'bugtrack_url', so raises a warning when seeing this argument. -- nosy: +lemburg

[issue29115] distutils.core.setup does not let people set 'bugtrack_url'.

2016-12-30 Thread Decorater
New submission from Decorater: So, I could have an example setup.py which sets a bugtrack url however using sdist and bdist_wheel on them produces this warning: H:\Python\Python360\lib\distutils\dist.py:261: UserWarning: Unknown distribution option: 'bugtrack_url' warnings.warn(msg) The iss