Skip to content

Commit e5f5b76

Browse files
author
Pedro Pablo Bustamante Barrera
committed
feat: update setup.py and version
1 parent bf27095 commit e5f5b76

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

setup.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
os.system('twine upload dist/*')
1010
sys.exit()
1111

12-
with open("README.md", "r") as fh:
12+
with open("README.md", "r", encoding="utf-8") as fh:
1313
long_description = fh.read()
1414

15-
with open("requirements.txt", "r") as requeriments:
15+
with open("requirements.txt", "r", encoding="utf-8") as requeriments:
1616
REQUIREMENTS = requeriments.readlines()
1717

1818
setuptools.setup(
1919
name="cryptomarket",
20-
version="1.0.6",
20+
version="3.0.0",
2121
packages=['cryptomarket', 'cryptomarket.websockets'],
2222
include_package_data=True,
2323
description="Cryptomarket API client library",
@@ -31,8 +31,12 @@
3131
classifiers=(
3232
"Intended Audience :: Developers",
3333
"Programming Language :: Python :: 3",
34-
"Programming Language :: Python :: 3:: Only",
3534
"Programming Language :: Python :: 3.8",
35+
"Programming Language :: Python :: 3.9",
36+
"Programming Language :: Python :: 3.10",
37+
"Programming Language :: Python :: 3.11",
38+
"Programming Language :: Python :: 3.12",
39+
"Programming Language :: Python :: 3:: Only",
3640
"License :: OSI Approved :: MIT License",
3741
"Operating System :: OS Independent",
3842
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)