summaryrefslogtreecommitdiff
path: root/setup.py
blob: 1f0df84d2c8436e1c35b9aa4f39a6747ce4c815d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/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'],
    scripts=['bin/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',
    ]
)