-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
31 lines (27 loc) · 884 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
31
import os
from setuptools import setup
setup_dir = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(setup_dir, 'README.rst')) as readme_file:
readme = readme_file.read()
with open(os.path.join(setup_dir, 'HISTORY.rst')) as history_file:
history = history_file.read()
setup(
name='pyope',
version='0.2.2',
description='Implementation of symmetric order-preserving encryption scheme',
long_description=readme + '\n\n' + history,
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Security :: Cryptography',
],
url='https://github.com/tonyo/pyope/',
author='Anton Ovchinnikov',
author_email='[email protected]',
license='MIT',
packages=['pyope'],
install_requires=[
'cryptography>=1.1',
'six>=1.5.0',
],
)