comparison setup.py @ 27127:7309853eedae

setup: remove unused py_modules argument to setup() It is never populated and is useless clutter.
author Gregory Szorc <gregory.szorc@gmail.com>
date Tue, 24 Nov 2015 21:17:26 -0800
parents e8497889edab
children 4374d819ccd5
comparison
equal deleted inserted replaced
27126:72b4e1bf8f28 27127:7309853eedae
480 } 480 }
481 481
482 packages = ['mercurial', 'mercurial.hgweb', 'mercurial.httpclient', 482 packages = ['mercurial', 'mercurial.hgweb', 'mercurial.httpclient',
483 'hgext', 'hgext.convert', 'hgext.highlight', 'hgext.zeroconf', 483 'hgext', 'hgext.convert', 'hgext.highlight', 'hgext.zeroconf',
484 'hgext.largefiles'] 484 'hgext.largefiles']
485
486 pymodules = []
487 485
488 common_depends = ['mercurial/util.h'] 486 common_depends = ['mercurial/util.h']
489 487
490 osutil_ldflags = [] 488 osutil_ldflags = []
491 489
634 'Programming Language :: Python', 632 'Programming Language :: Python',
635 'Topic :: Software Development :: Version Control', 633 'Topic :: Software Development :: Version Control',
636 ], 634 ],
637 scripts=scripts, 635 scripts=scripts,
638 packages=packages, 636 packages=packages,
639 py_modules=pymodules,
640 ext_modules=extmodules, 637 ext_modules=extmodules,
641 data_files=datafiles, 638 data_files=datafiles,
642 package_data=packagedata, 639 package_data=packagedata,
643 cmdclass=cmdclass, 640 cmdclass=cmdclass,
644 distclass=hgdist, 641 distclass=hgdist,