##// END OF EJS Templates
setup.py: add metadata to register package to PyPI...
Benoit Boissinot -
r18753:3f59cb1c stable
parent child Browse files
Show More
@@ -519,11 +519,36 b" if sys.platform == 'darwin' and os.path."
519
519
520 setup(name='mercurial',
520 setup(name='mercurial',
521 version=setupversion,
521 version=setupversion,
522 author='Matt Mackall',
522 author='Matt Mackall and many others',
523 author_email='mpm@selenic.com',
523 author_email='mercurial@selenic.com',
524 url='http://mercurial.selenic.com/',
524 url='http://mercurial.selenic.com/',
525 description='Scalable distributed SCM',
525 download_url='http://mercurial.selenic.com/release/',
526 license='GNU GPLv2+',
526 description=('Fast scalable distributed SCM (revision control, version '
527 'control) system'),
528 long_description=('Mercurial is a distributed SCM tool written in Python.'
529 ' It is used by a number of large projects that require'
530 ' fast, reliable distributed revision control, such as '
531 'Mozilla.'),
532 license='GNU GPLv2 or any later version',
533 classifiers=[
534 'Development Status :: 6 - Mature',
535 'Environment :: Console',
536 'Intended Audience :: Developers',
537 'Intended Audience :: System Administrators',
538 'License :: OSI Approved :: GNU General Public License (GPL)',
539 'Natural Language :: Danish',
540 'Natural Language :: English',
541 'Natural Language :: German',
542 'Natural Language :: Italian',
543 'Natural Language :: Japanese',
544 'Natural Language :: Portuguese (Brazilian)',
545 'Operating System :: Microsoft :: Windows',
546 'Operating System :: OS Independent',
547 'Operating System :: POSIX',
548 'Programming Language :: C',
549 'Programming Language :: Python',
550 'Topic :: Software Development :: Version Control',
551 ],
527 scripts=scripts,
552 scripts=scripts,
528 packages=packages,
553 packages=packages,
529 py_modules=pymodules,
554 py_modules=pymodules,
General Comments 0
You need to be logged in to leave comments. Login now