1#!/usr/bin/env python3 2 3# Copyright (c) 2009 Google Inc. All rights reserved. 4# Use of this source code is governed by a BSD-style license that can be 5# found in the LICENSE file. 6 7from os import path 8 9from setuptools import setup 10 11here = path.abspath(path.dirname(__file__)) 12# Get the long description from the README file 13with open(path.join(here, "README.md")) as in_file: 14 long_description = in_file.read() 15 16setup( 17 name="gyp-next", 18 version="0.13.0", 19 description="A fork of the GYP build system for use in the Node.js projects", 20 long_description=long_description, 21 long_description_content_type="text/markdown", 22 author="Node.js contributors", 23 author_email="ryzokuken@disroot.org", 24 url="https://github.com/nodejs/gyp-next", 25 package_dir={"": "pylib"}, 26 packages=["gyp", "gyp.generator"], 27 entry_points={"console_scripts": ["gyp=gyp:script_main"]}, 28 python_requires=">=3.6", 29 classifiers=[ 30 "Development Status :: 3 - Alpha", 31 "Environment :: Console", 32 "Intended Audience :: Developers", 33 "License :: OSI Approved :: BSD License", 34 "Natural Language :: English", 35 "Programming Language :: Python", 36 "Programming Language :: Python :: 3", 37 "Programming Language :: Python :: 3.6", 38 "Programming Language :: Python :: 3.7", 39 "Programming Language :: Python :: 3.8", 40 "Programming Language :: Python :: 3.9", 41 ], 42) 43