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 |
|
---|
7 | from os import path
|
---|
8 |
|
---|
9 | from setuptools import setup
|
---|
10 |
|
---|
11 | here = path.abspath(path.dirname(__file__))
|
---|
12 | # Get the long description from the README file
|
---|
13 | with open(path.join(here, "README.md")) as in_file:
|
---|
14 | long_description = in_file.read()
|
---|
15 |
|
---|
16 | setup(
|
---|
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 | )
|
---|