1
1
[build-system ]
2
- requires = [" setuptools" ]
2
+ requires = [" setuptools" , " wheel " ]
3
3
build-backend = " setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " pynvim"
7
7
version = " 0.6.0"
8
8
description = " Python client for Neovim"
9
9
readme = " README.md"
10
- license = {text = " Apache" }
11
- authors = [{name = " Neovim Authors" }]
10
+ license = { text = " Apache-2.0" }
11
+ authors = [
12
+ { name = " Neovim Authors" }
13
+ ]
12
14
requires-python = " >=3.7"
13
15
dependencies = [
14
16
" msgpack>=1.0.0" ,
15
17
" greenlet>=3.0; python_implementation != 'PyPy'" ,
16
18
" typing-extensions>=4.5; python_version < '3.12'" ,
17
19
]
18
20
21
+ classifiers = [
22
+ " Development Status :: 5 - Production/Stable" ,
23
+ " Programming Language :: Python :: 3" ,
24
+ " Programming Language :: Python :: 3.7" ,
25
+ " Programming Language :: Python :: 3.8" ,
26
+ " Programming Language :: Python :: 3.9" ,
27
+ " Programming Language :: Python :: 3.10" ,
28
+ " Programming Language :: Python :: 3.11" ,
29
+ " Programming Language :: Python :: 3.12" ,
30
+ " License :: OSI Approved :: Apache Software License" ,
31
+ " Operating System :: OS Independent" ,
32
+ ]
33
+
19
34
[project .optional-dependencies ]
20
35
test = [
21
36
" pytest" ,
22
- " pytest_timeout " ,
37
+ " pytest-timeout " ,
23
38
]
24
39
docs = [
25
40
" sphinx" ,
@@ -30,5 +45,6 @@ docs = [
30
45
pynvim-python = " pynvim.python:main"
31
46
32
47
[project .urls ]
33
- Homepage = " http ://github.com/neovim/pynvim"
48
+ Homepage = " https ://github.com/neovim/pynvim"
34
49
Download = " https://github.com/neovim/pynvim/archive/0.6.0.tar.gz"
50
+ Documentation = " https://pynvim.readthedocs.io"
0 commit comments