Skip to content

Commit

Permalink
Add missing dependency requirement to package file; update package ve…
Browse files Browse the repository at this point in the history
…rsion.
  • Loading branch information
lapets committed Mar 15, 2022
1 parent fcbc7cd commit fd91667
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,11 +170,14 @@ def run(self):
long_description = fh.read().replace(".. include:: toc.rst\n\n", "")

name = "bcl"
version = "2.0.1"
version = "2.0.2"

setup(
name=name,
version=version,
packages=["bcl"],
ext_package="bcl",
install_requires=["cffi~=1.15"],
license="MIT",
url="https://github.com/nthparty/bcl",
author="Nth Party, Ltd.",
Expand All @@ -186,8 +189,6 @@ def run(self):
long_description_content_type="text/x-rst",
test_suite="nose.collector",
tests_require=["nose"],
packages=["bcl"],
ext_package="bcl",
cffi_modules=["bcl/sodium_ffi.py:sodium_ffi"],
cmdclass={
"build_clib": build_clib,
Expand Down

0 comments on commit fd91667

Please sign in to comment.