Skip to content

Commit ea7b3d1

Browse files
authored
Fix PyPI publish problem
1 parent 8753530 commit ea7b3d1

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

pyvts/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
"""
66

7-
__version__ = "0.1.0"
7+
__version__ = "0.1.1"
88
__all__ = ["vts", "vts_request", "config", "error"]
99

1010
from .vts import vts

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ aiofiles
22
websockets
33
pytest
44
pytest-asyncio
5-
coverage
5+
coverage

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@
1111
version=VERSION,
1212
description=DESCRIPTION,
1313
long_description=open("README.md", encoding="utf-8").read(),
14+
long_description_content_type='text/markdown',
1415
keywords='vtubestudio',
15-
classifiers=['Development Status :: Alpha',
16+
classifiers=['Development Status :: 3 - Alpha',
1617
'Intended Audience :: Developers',
17-
'License :: MIT',
18+
'License :: OSI Approved :: MIT License',
1819
'Operating System :: Microsoft :: Windows',
1920
'Operating System :: MacOS',
2021
'Programming Language :: Python',

0 commit comments

Comments
 (0)