diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-10-22 16:35:43 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-10-22 16:35:43 +0200 |
commit | a57c8f61591d3d9041c1eab356c397b9891f5ba4 (patch) | |
tree | 7540f91240063b1096947ca7b45971b681a16e50 /setup.py | |
download | gemato-a57c8f61591d3d9041c1eab356c397b9891f5ba4.tar.gz |
Initial checkout, with a basic hash backend
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..832d174 --- /dev/null +++ b/setup.py @@ -0,0 +1,27 @@ +#!/usr/bin/python +# vim:fileencoding=utf-8 +# (C) 2017 Michał Górny <mgorny@gentoo.org> +# Licensed under the terms of 2-clause BSD license + +from distutils.core import setup + + +setup( + name='gemato', + version=0, + author='Michał Górny', + author_email='mgorny@gentoo.org', + url='http://github.com/mgorny/gemato', + + packages=['gemato'], + + classifiers=[ + 'Development Status :: 2 - Pre-Alpha', + 'Environment :: Console', + 'Intended Audience :: System Administrators', + 'License :: OSI Approved :: BSD License', + 'Operating System :: POSIX', + 'Programming Language :: Python', + 'Topic :: Security :: Cryptography', + ] +) |