source: trip-planner-front/node_modules/node-gyp/gyp/setup.py@ 6a80231

Last change on this file since 6a80231 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.5 KB
Line 
1#!/usr/bin/env python
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.6.2",
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=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
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 :: 2",
37 "Programming Language :: Python :: 2.7",
38 "Programming Language :: Python :: 3",
39 "Programming Language :: Python :: 3.5",
40 "Programming Language :: Python :: 3.6",
41 "Programming Language :: Python :: 3.7",
42 "Programming Language :: Python :: 3.8",
43 ],
44)
Note: See TracBrowser for help on using the repository browser.