summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 54bb79b6167b9c43c09995a65a885098aecbcd18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/python
#
# Copyright (C) 2015  JWCrypto Project Contributors, see  LICENSE file

from distutils.core import setup

setup(
    name = 'jwcrypto',
    version = '0.0.1',
    license = 'LGPLv3+',
    maintainer = 'JWCrypto Project Contributors',
    maintainer_email = 'simo@redhat.com',
    url='https://github.com/simo5/jwcrypto',
    packages = ['jwcrypto'],
    data_files = [('share/doc/jwcrypto', ['LICENSE', 'README.md'])],
)