-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (22 loc) · 867 Bytes
/
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
from setuptools import setup
setup (name='pyscarab',
version='0.1.1',
description='Python wrapper and abstractions for libscarab FHE library',
author='Bogdan Kulynych, Benjamin Lipp, Davide Kirchner',
author_email='hello@hidden-markov.com, mail@benjaminlipp.de, davide.kirchner@yahoo.it',
url='https://github.com/blindstore/pyscarab',
packages=['scarab', 'scarab.tests'],
license='MIT',
keywords='crypto',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Security :: Cryptography',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
test_suite='nose.collector',
test_requires=[
'nose'
])