mirror of
https://github.com/clearml/wexpect-venv
synced 2025-01-31 02:46:59 +00:00
Fix wheel build
Add support matrix for py3.11 and py3.12
This commit is contained in:
parent
4d33d7bcf7
commit
aa03a0785e
@ -1,6 +1,6 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = wexpect-venv
|
name = wexpect-venv
|
||||||
version = 4.0.1
|
version = 4.0.2
|
||||||
author = Noah Spurrier, Richard Holden, Marco Molteni, Kimberley Burchett, Robert Stone, Hartmut Goebel, Chad Schroeder, Erick Tryzelaar, Dave Kirby, Ids vander Molen, George Todd, Noel Taylor, Nicolas D. Cesar, Alexander Gattin, Geoffrey Marshall, Francisco Lourenco, Glen Mabey, Karthik Gurusamy, Fernando Perez, Corey Minyard, Jon Cohen, Guillaume Chazarain, Andrew Ryan, Nick Craig-Wood, Andrew Stone, Jorgen Grahn, Benedek Racz
|
author = Noah Spurrier, Richard Holden, Marco Molteni, Kimberley Burchett, Robert Stone, Hartmut Goebel, Chad Schroeder, Erick Tryzelaar, Dave Kirby, Ids vander Molen, George Todd, Noel Taylor, Nicolas D. Cesar, Alexander Gattin, Geoffrey Marshall, Francisco Lourenco, Glen Mabey, Karthik Gurusamy, Fernando Perez, Corey Minyard, Jon Cohen, Guillaume Chazarain, Andrew Ryan, Nick Craig-Wood, Andrew Stone, Jorgen Grahn, Benedek Racz
|
||||||
author-email = info@clear.ml
|
author-email = info@clear.ml
|
||||||
summary = Fork of WExpect, a Windows alternative of pexpect
|
summary = Fork of WExpect, a Windows alternative of pexpect
|
||||||
@ -24,6 +24,8 @@ classifier =
|
|||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Programming Language :: Python :: 3.9
|
Programming Language :: Python :: 3.9
|
||||||
Programming Language :: Python :: 3.10
|
Programming Language :: Python :: 3.10
|
||||||
|
Programming Language :: Python :: 3.11
|
||||||
|
Programming Language :: Python :: 3.12
|
||||||
keywords =
|
keywords =
|
||||||
scripting, automation, expect, pexpect, wexpect
|
scripting, automation, expect, pexpect, wexpect
|
||||||
|
|
||||||
|
5
setup.py
5
setup.py
@ -1,11 +1,12 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
# setup_requires=['pbr'],
|
# setup_requires=['pbr'],
|
||||||
# pbr=True,
|
# pbr=True,
|
||||||
|
|
||||||
# packages=[''],
|
# packages=[''],
|
||||||
py_modules=['wexpect'],
|
#py_modules=['wexpect'],
|
||||||
|
packages=find_packages()
|
||||||
)
|
)
|
Loading…
Reference in New Issue
Block a user