setup.py 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #!/usr/bin/env python3
  2. # Copyright 2020 The Chromium Authors. All rights reserved.
  3. # Use of this source code is governed by a BSD-style license that can be
  4. # found in the LICENSE file.
  5. """Install the package!"""
  6. from __future__ import absolute_import
  7. import setuptools
  8. setuptools.setup(
  9. name='grit',
  10. version='0',
  11. entry_points={
  12. 'console_scripts': ['grit = grit.grit_runner:Main'],
  13. },
  14. packages=setuptools.find_packages(),
  15. install_requires=[
  16. 'six >= 1.10',
  17. ],
  18. author='The Chromium Authors',
  19. author_email='chromium-dev@chromium.org',
  20. description=('Google Resource and Internationalization Tool for managing '
  21. 'translations & resource files'),
  22. license='BSD-3',
  23. url='https://chromium.googlesource.com/chromium/src/tools/grit/',
  24. classifiers=[
  25. 'Development Status :: 6 - Mature',
  26. 'Environment :: Console',
  27. 'Intended Audience :: Developers',
  28. 'License :: OSI Approved :: BSD License',
  29. 'Operating System :: MacOS',
  30. 'Operating System :: Microsoft :: Windows',
  31. 'Operating System :: POSIX :: Linux',
  32. 'Programming Language :: Python',
  33. 'Programming Language :: Python :: 2.7',
  34. 'Programming Language :: Python :: 3',
  35. 'Programming Language :: Python :: 3.6',
  36. 'Programming Language :: Python :: 3.7',
  37. 'Programming Language :: Python :: 3.8',
  38. 'Programming Language :: Python :: 3.9',
  39. 'Topic :: Utilities',
  40. ],
  41. )