setup.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #!/usr/bin/env python
  2. # Copyright (c) 2009 Google Inc. 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. from os import path
  6. from setuptools import setup
  7. here = path.abspath(path.dirname(__file__))
  8. # Get the long description from the README file
  9. with open(path.join(here, "README.md")) as in_file:
  10. long_description = in_file.read()
  11. setup(
  12. name="gyp-next",
  13. version="0.6.2",
  14. description="A fork of the GYP build system for use in the Node.js projects",
  15. long_description=long_description,
  16. long_description_content_type="text/markdown",
  17. author="Node.js contributors",
  18. author_email="ryzokuken@disroot.org",
  19. url="https://github.com/nodejs/gyp-next",
  20. package_dir={"": "pylib"},
  21. packages=["gyp", "gyp.generator"],
  22. entry_points={"console_scripts": ["gyp=gyp:script_main"]},
  23. python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
  24. classifiers=[
  25. "Development Status :: 3 - Alpha",
  26. "Environment :: Console",
  27. "Intended Audience :: Developers",
  28. "License :: OSI Approved :: BSD License",
  29. "Natural Language :: English",
  30. "Programming Language :: Python",
  31. "Programming Language :: Python :: 2",
  32. "Programming Language :: Python :: 2.7",
  33. "Programming Language :: Python :: 3",
  34. "Programming Language :: Python :: 3.5",
  35. "Programming Language :: Python :: 3.6",
  36. "Programming Language :: Python :: 3.7",
  37. "Programming Language :: Python :: 3.8",
  38. ],
  39. )