-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (39 loc) · 996 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
32
33
34
35
36
37
38
39
40
41
42
43
import sys
from setuptools import setup, Extension
from setuptools import find_packages
install_requires = [
"cffi>=1.0.0",
"contexter>=0.1.3",
'plumbum',
]
if sys.version_info.major < 3:
install_requires.append("futures>=3.0.5")
setup(
name='keypipe',
version='0.0.1',
author='Josh Snyder',
author_email='[email protected]',
packages=find_packages(),
setup_requires=[
'cffi>=1.0.0',
'pytest-runner',
],
install_requires=install_requires,
tests_require=[
'pytest',
# these seems to be optional runtime dependencies, but tests won't pass without them
'boto3',
'requests',
],
cffi_modules=['cffi_builders/lib.py:ffi'],
entry_points=dict(
console_scripts=[
'keyseal=keypipe.cli:seal',
'keyunseal=keypipe.cli:unseal',
],
),
license='Apache License 2.0',
classifiers=[
'License :: OSI Approved :: Apache Software License',
],
)