Skip to content

Commit

Permalink
release of v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-volz committed Oct 16, 2022
1 parent 23907cc commit ef2b00e
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 3 deletions.
6 changes: 6 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
include LICENSE
include README.md
include requirements.txt

recursive-exclude * __pycache__
recursive-exclude * *.py[co]
Empty file.
Binary file removed dist/defichain-1.2.0-py3-none-any.whl
Binary file not shown.
Binary file removed dist/defichain-1.2.0.tar.gz
Binary file not shown.
Binary file added dist/defichain-2.0.0-py3-none-any.whl
Binary file not shown.
Binary file added dist/defichain-2.0.0.tar.gz
Binary file not shown.
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup
from os import path

VERSION = '1.2.0'
VERSION = '2.0.0'
DESCRIPTION = 'Defichain Python Library'

# Project URLs
Expand All @@ -14,6 +14,10 @@
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()

# requirements.txt
with open("requirements.txt", "r") as _requirements:
requirements: list = list(map(str.strip, _requirements.read().split("\n")))

# Setting up
setup(
name="defichain",
Expand All @@ -37,7 +41,8 @@
'defichain.ocean.modules',
'defichain.hdwallet',
'defichain.hdwallet.libs'],
install_requires=["requests", "ecdsa", "sha3", "base58", "six"],
package_data={'': ['*.txt']},
install_requires=requirements,
keywords=['python', 'defichain', 'node', 'ocean', 'mnemonic', 'wallet', 'privateKey'],
classifiers=[
"Programming Language :: Python :: 3.6",
Expand All @@ -49,4 +54,4 @@
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)
)

0 comments on commit ef2b00e

Please sign in to comment.