Skip to content

Commit

Permalink
feat: Move __version__ dunder to package, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Laerte committed Jul 12, 2022
1 parent 8deae21 commit 729aa12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions aes_pkcs5/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.1.1"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
from setuptools import find_packages, setup
from setuptools.command.develop import develop

from aes_pkcs5 import __version__


class CustomDevelopCommand(develop):
"""Instal development dependencies"""
Expand All @@ -12,8 +14,6 @@ def install_for_development(self):
system("pre-commit install")


__version__ = "0.1.0"

requires = ["cryptography >= 37.0.2"]

extras = {}
Expand Down

0 comments on commit 729aa12

Please sign in to comment.