|
2 | 2 | Package Setup Configurations. |
3 | 3 | """ |
4 | 4 |
|
5 | | -import coinbaseadvanced |
6 | 5 | import os |
7 | | - |
8 | 6 | from setuptools import find_packages, setup |
9 | 7 |
|
| 8 | +import coinbaseadvanced |
| 9 | + |
10 | 10 | root = os.path.abspath(os.path.dirname(__file__)) |
11 | 11 |
|
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: |
13 | 13 | requirements = fh.readlines() |
14 | 14 |
|
15 | 15 | with open("README.md", "r", encoding="utf-8") as fh: |
|
28 | 28 | download_url=f"https://github.com/KmiQ/coinbase-advanced-python/archive/refs/tags/{coinbaseadvanced.__version__}.tar.gz", |
29 | 29 | author='Camilo Quintas', |
30 | 30 | author_email='kmiloc89@gmail.com', |
31 | | - keywords=['api', 'coinbase', 'bitcoin', 'client'], |
| 31 | + keywords=['api', 'coinbase', 'bitcoin', 'client', 'crypto'], |
32 | 32 | install_requires=[req for req in requirements], |
33 | 33 | classifiers=[ |
34 | 34 | "Development Status :: 5 - Production/Stable", |
35 | 35 | "Intended Audience :: Developers", |
36 | 36 | "Intended Audience :: Financial and Insurance Industry", |
37 | 37 | "Natural Language :: English", |
38 | 38 | "License :: OSI Approved :: MIT License", |
39 | | - "Programming Language :: Python :: 3.7", |
| 39 | + "Programming Language :: Python :: 3.8", |
40 | 40 | "Operating System :: OS Independent", |
41 | 41 | "Topic :: Software Development :: Libraries :: Python Modules" |
42 | 42 | ], |
|
0 commit comments