Skip to content

Commit cf6da92

Browse files
committed
feat: prepare to publish
1 parent 88d3999 commit cf6da92

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -195,11 +195,11 @@ args.TRANSFER_BY.EMAIL = 'email'
195195
```
196196

197197
# Checkout our other SDKs
198-
<!-- agregar links -->
199-
node sdk
200198

201-
java sdk
199+
[node sdk](https://github.com/cryptomkt/cryptomkt-node)
202200

203-
go sdk
201+
[java sdk](https://github.com/cryptomkt/cryptomkt-java)
204202

205-
ruby sdk
203+
[go sdk](https://github.com/cryptomkt/cryptomkt-go)
204+
205+
[ruby sdk](https://github.com/cryptomkt/cryptomkt-ruby)

setup.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1+
import os
12
import setuptools
3+
import sys
4+
5+
# 'setup.py publish' shortcut.
6+
if sys.argv[-1] == 'publish':
7+
print("publish")
8+
os.system('python setup.py sdist bdist_wheel')
9+
os.system('twine upload dist/*')
10+
sys.exit()
211

312
with open("README.md", "r") as fh:
413
long_description = fh.read()
@@ -8,17 +17,16 @@
817

918
setuptools.setup(
1019
name="cryptomarket",
11-
version="0.0.0",
20+
version="1.0.5",
1221
packages=['cryptomarket', 'cryptomarket.websockets'],
13-
# include_package_data=True,
22+
include_package_data=True,
1423
description="Cryptomarket API client library",
1524
long_description=long_description,
1625
long_description_content_type="text/markdown",
1726
keywords=['api', 'cryptomkt', 'cryptomarket', 'bitcoin', 'client'],
1827
url="https://github.com/cryptomkt/cryptomkt-python",
1928
install_requires=REQUIREMENTS,
2029
author="CryptoMarket",
21-
2230
python_requires='>=3.6',
2331
classifiers=(
2432
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)