forked from SYSTRAN/storages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 767 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
from setuptools import setup, find_packages
tests_require = [
'requests_mock',
'pytest==4.*',
]
setup(
name='systran-storages',
version='0.1.0',
description='systran generic storage implementation',
author='Jean Senellart',
author_email='[email protected]',
url='http://www.systransoft.com',
packages=find_packages(exclude=["bin"]),
entry_points={
"console_scripts": [
"systran-storages-cli=systran_storages.bin.storages_cli:main",
],
},
tests_require=tests_require,
extras_require={
"tests": tests_require,
},
install_requires=[
'six',
'boto3',
'paramiko',
'requests',
'scp',
'python-swiftclient',
]
)