setup.py
changeset 51999 d4b275587847
parent 51977 d07034819565
child 52194 2c4283c9fa93
equal deleted inserted replaced
51998:22a50b7934d2 51999:d4b275587847
  1764     # Windows binary file versions for exe/dll files must have the
  1764     # Windows binary file versions for exe/dll files must have the
  1765     # form W.X.Y.Z, where W,X,Y,Z are numbers in the range 0..65535
  1765     # form W.X.Y.Z, where W,X,Y,Z are numbers in the range 0..65535
  1766     setupversion = setupversion.split(r'+', 1)[0]
  1766     setupversion = setupversion.split(r'+', 1)[0]
  1767 
  1767 
  1768 setup(
  1768 setup(
  1769     name='mercurial',
       
  1770     version=setupversion,
  1769     version=setupversion,
  1771     author='Olivia Mackall and many others',
       
  1772     author_email='mercurial@mercurial-scm.org',
       
  1773     url='https://mercurial-scm.org/',
       
  1774     download_url='https://mercurial-scm.org/release/',
       
  1775     description=(
       
  1776         'Fast scalable distributed SCM (revision control, version '
       
  1777         'control) system'
       
  1778     ),
       
  1779     long_description=(
  1770     long_description=(
  1780         'Mercurial is a distributed SCM tool written in Python.'
  1771         'Mercurial is a distributed SCM tool written in Python.'
  1781         ' It is used by a number of large projects that require'
  1772         ' It is used by a number of large projects that require'
  1782         ' fast, reliable distributed revision control, such as '
  1773         ' fast, reliable distributed revision control, such as '
  1783         'Mozilla.'
  1774         'Mozilla.'
  1784     ),
  1775     ),
  1785     long_description_content_type='text/x-rst',
  1776     long_description_content_type='text/x-rst',
  1786     license='GNU GPLv2 or any later version',
       
  1787     classifiers=[
       
  1788         'Development Status :: 6 - Mature',
       
  1789         'Environment :: Console',
       
  1790         'Intended Audience :: Developers',
       
  1791         'Intended Audience :: System Administrators',
       
  1792         'License :: OSI Approved :: GNU General Public License (GPL)',
       
  1793         'Natural Language :: Danish',
       
  1794         'Natural Language :: English',
       
  1795         'Natural Language :: German',
       
  1796         'Natural Language :: Italian',
       
  1797         'Natural Language :: Japanese',
       
  1798         'Natural Language :: Portuguese (Brazilian)',
       
  1799         'Operating System :: Microsoft :: Windows',
       
  1800         'Operating System :: OS Independent',
       
  1801         'Operating System :: POSIX',
       
  1802         'Programming Language :: C',
       
  1803         'Programming Language :: Python',
       
  1804         'Topic :: Software Development :: Version Control',
       
  1805     ],
       
  1806     scripts=scripts,
  1777     scripts=scripts,
  1807     packages=packages,
  1778     packages=packages,
  1808     ext_modules=extmodules,
  1779     ext_modules=extmodules,
  1809     data_files=datafiles,
  1780     data_files=datafiles,
  1810     package_data=packagedata,
  1781     package_data=packagedata,