__about__.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Author:: Donald Stufft (<donald@stufft.io>)
  2. # Copyright:: Copyright (c) 2013 Donald Stufft
  3. # License:: Apache License, Version 2.0
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. from __future__ import absolute_import
  17. from __future__ import division
  18. from __future__ import unicode_literals
  19. __all__ = [
  20. "__title__",
  21. "__summary__",
  22. "__uri__",
  23. "__version__",
  24. "__author__",
  25. "__email__",
  26. "__license__",
  27. "__copyright__",
  28. ]
  29. __title__ = "bcrypt"
  30. __summary__ = "Modern password hashing for your software and your servers"
  31. __uri__ = "https://github.com/pyca/bcrypt/"
  32. __version__ = "3.2.2"
  33. __author__ = "The Python Cryptographic Authority developers"
  34. __email__ = "cryptography-dev@python.org"
  35. __license__ = "Apache License, Version 2.0"
  36. __copyright__ = "Copyright 2013-2022 {0}".format(__author__)