-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.1 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
41
42
43
44
from setuptools import setup
with open('README.rst', 'r') as fh:
long_description = fh.read().replace('.. include:: toc.rst\n\n', '')
# The lines below can be parsed by ``docs/conf.py``.
name = 'lhe'
version = '0.8.0'
setup(
name=name,
version=version,
packages=[name],
install_requires=['mclbn256'],
extras_require={
'docs': [
'sphinx~=4.2.0',
'sphinx-rtd-theme~=1.0.0'
],
'test': [
'pytest~=7.0',
'pytest-cov~=3.0'
],
'lint': [
'pylint~=2.14.0'
],
'coveralls': [
'coveralls~=3.3.1'
],
'publish': [
'setuptools~=62.0',
'wheel~=0.37',
'twine~=4.0'
]
},
license='MIT',
url='https://github.com/nthparty/lhe',
author='Wyatt Howe',
author_email='[email protected]',
description='Leveled homomorphic encryption library supporting' +
'up to three multiplications and unlimited additions.',
long_description=long_description,
long_description_content_type='text/x-rst',
)