11cb0ef41Sopenharmony_ci#!/usr/bin/env python3 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ci# Copyright (c) 2009 Google Inc. All rights reserved. 41cb0ef41Sopenharmony_ci# Use of this source code is governed by a BSD-style license that can be 51cb0ef41Sopenharmony_ci# found in the LICENSE file. 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_cifrom os import path 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_cifrom setuptools import setup 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_cihere = path.abspath(path.dirname(__file__)) 121cb0ef41Sopenharmony_ci# Get the long description from the README file 131cb0ef41Sopenharmony_ciwith open(path.join(here, "README.md")) as in_file: 141cb0ef41Sopenharmony_ci long_description = in_file.read() 151cb0ef41Sopenharmony_ci 161cb0ef41Sopenharmony_cisetup( 171cb0ef41Sopenharmony_ci name="gyp-next", 181cb0ef41Sopenharmony_ci version="0.13.0", 191cb0ef41Sopenharmony_ci description="A fork of the GYP build system for use in the Node.js projects", 201cb0ef41Sopenharmony_ci long_description=long_description, 211cb0ef41Sopenharmony_ci long_description_content_type="text/markdown", 221cb0ef41Sopenharmony_ci author="Node.js contributors", 231cb0ef41Sopenharmony_ci author_email="ryzokuken@disroot.org", 241cb0ef41Sopenharmony_ci url="https://github.com/nodejs/gyp-next", 251cb0ef41Sopenharmony_ci package_dir={"": "pylib"}, 261cb0ef41Sopenharmony_ci packages=["gyp", "gyp.generator"], 271cb0ef41Sopenharmony_ci entry_points={"console_scripts": ["gyp=gyp:script_main"]}, 281cb0ef41Sopenharmony_ci python_requires=">=3.6", 291cb0ef41Sopenharmony_ci classifiers=[ 301cb0ef41Sopenharmony_ci "Development Status :: 3 - Alpha", 311cb0ef41Sopenharmony_ci "Environment :: Console", 321cb0ef41Sopenharmony_ci "Intended Audience :: Developers", 331cb0ef41Sopenharmony_ci "License :: OSI Approved :: BSD License", 341cb0ef41Sopenharmony_ci "Natural Language :: English", 351cb0ef41Sopenharmony_ci "Programming Language :: Python", 361cb0ef41Sopenharmony_ci "Programming Language :: Python :: 3", 371cb0ef41Sopenharmony_ci "Programming Language :: Python :: 3.6", 381cb0ef41Sopenharmony_ci "Programming Language :: Python :: 3.7", 391cb0ef41Sopenharmony_ci "Programming Language :: Python :: 3.8", 401cb0ef41Sopenharmony_ci "Programming Language :: Python :: 3.9", 411cb0ef41Sopenharmony_ci ], 421cb0ef41Sopenharmony_ci) 43