__about__.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  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__", "__summary__", "__uri__", "__version__", "__author__",
  21. "__email__", "__license__", "__copyright__",
  22. ]
  23. __title__ = "bcrypt"
  24. __summary__ = "Modern password hashing for your software and your servers"
  25. __uri__ = "https://github.com/pyca/bcrypt/"
  26. __version__ = "3.1.3"
  27. __author__ = "The Python Cryptographic Authority developers"
  28. __email__ = "cryptography-dev@python.org"
  29. __license__ = "Apache License, Version 2.0"
  30. __copyright__ = "Copyright 2013-2016 {0}".format(__author__)