Skip to content

Commit 024ce64

Browse files
authored
new release setup (#52)
1 parent dddce87 commit 024ce64

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

coinbaseadvanced/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""
22
Package Version
33
"""
4-
__version__ = '0.3.0'
4+
__version__ = '1.0.0'

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
cffi==1.15.1
1+
22
cfgv==3.3.1
33
cryptography==42.0.2
44
PyJWT==2.8.0
5-
python-dotenv==0.21.1
65
requests==2.31.0
76
rfc3986==2.0.0

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
Package Setup Configurations.
33
"""
44

5-
import coinbaseadvanced
65
import os
7-
86
from setuptools import find_packages, setup
97

8+
import coinbaseadvanced
9+
1010
root = os.path.abspath(os.path.dirname(__file__))
1111

12-
with open(os.path.join(root, "requirements.txt"), "r") as fh:
12+
with open(os.path.join(root, "requirements.txt"), "r", encoding="utf-8") as fh:
1313
requirements = fh.readlines()
1414

1515
with open("README.md", "r", encoding="utf-8") as fh:
@@ -28,15 +28,15 @@
2828
download_url=f"https://github.com/KmiQ/coinbase-advanced-python/archive/refs/tags/{coinbaseadvanced.__version__}.tar.gz",
2929
author='Camilo Quintas',
3030
author_email='kmiloc89@gmail.com',
31-
keywords=['api', 'coinbase', 'bitcoin', 'client'],
31+
keywords=['api', 'coinbase', 'bitcoin', 'client', 'crypto'],
3232
install_requires=[req for req in requirements],
3333
classifiers=[
3434
"Development Status :: 5 - Production/Stable",
3535
"Intended Audience :: Developers",
3636
"Intended Audience :: Financial and Insurance Industry",
3737
"Natural Language :: English",
3838
"License :: OSI Approved :: MIT License",
39-
"Programming Language :: Python :: 3.7",
39+
"Programming Language :: Python :: 3.8",
4040
"Operating System :: OS Independent",
4141
"Topic :: Software Development :: Libraries :: Python Modules"
4242
],

0 commit comments

Comments
 (0)