forked from seb-m/tss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.16 KB
/
setup.py
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
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
import sys
if sys.version_info < (2, 6):
sys.stderr.write('This module requires at least Python 2.6\n')
sys.exit(1)
try:
from setuptools import setup
except:
from distutils.core import setup
classif = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries',
]
setup(
name='tss',
version='0.1',
description=("Threshold Secret Sharing (Shamir's secret sharing scheme)."),
author='Sebastien Martini',
author_email='[email protected]',
license='MIT License',
classifiers=classif,
url='http://github.com/seb-m/tss',
py_modules=['tss'],
)