Skip to content

Commit

Permalink
Update setup.py: bump version and add install_requires: pynacl, pycry…
Browse files Browse the repository at this point in the history
…ptodomex
  • Loading branch information
hakavlad committed Jan 14, 2024
1 parent bc7bcc5 commit 375f2ca
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def readme():


NAME = 'tird'
VERSION = '0.3.0'
VERSION = '0.4.0'

setup(
name=NAME,
Expand Down Expand Up @@ -41,5 +41,9 @@ def readme():
entry_points={'console_scripts': [
'{n} = {n}.{n}:main'.format(n=NAME),
]},
python_requires='>=3.6'
python_requires='>=3.6',
install_requires=[
'pycryptodomex>=3.6.2',
'pynacl>=1.2.0',
],
)

0 comments on commit 375f2ca

Please sign in to comment.