|
4 | 4 | # Use of this source code is governed by a BSD-style license that can be |
5 | 5 | # found in the LICENSE file. |
6 | 6 |
|
7 | | -from os import path |
8 | | - |
9 | 7 | from setuptools import setup |
10 | 8 |
|
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 | 9 |
|
16 | | -setup( |
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 | | - |
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 | | -) |
| 10 | +setup() |
0 commit comments