|
9 | 9 | os.system('twine upload dist/*') |
10 | 10 | sys.exit() |
11 | 11 |
|
12 | | -with open("README.md", "r") as fh: |
| 12 | +with open("README.md", "r", encoding="utf-8") as fh: |
13 | 13 | long_description = fh.read() |
14 | 14 |
|
15 | | -with open("requirements.txt", "r") as requeriments: |
| 15 | +with open("requirements.txt", "r", encoding="utf-8") as requeriments: |
16 | 16 | REQUIREMENTS = requeriments.readlines() |
17 | 17 |
|
18 | 18 | setuptools.setup( |
19 | 19 | name="cryptomarket", |
20 | | - version="1.0.6", |
| 20 | + version="3.0.0", |
21 | 21 | packages=['cryptomarket', 'cryptomarket.websockets'], |
22 | 22 | include_package_data=True, |
23 | 23 | description="Cryptomarket API client library", |
|
31 | 31 | classifiers=( |
32 | 32 | "Intended Audience :: Developers", |
33 | 33 | "Programming Language :: Python :: 3", |
34 | | - "Programming Language :: Python :: 3:: Only", |
35 | 34 | "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", |
36 | 40 | "License :: OSI Approved :: MIT License", |
37 | 41 | "Operating System :: OS Independent", |
38 | 42 | "Topic :: Software Development :: Libraries :: Python Modules", |
|
0 commit comments