File tree 2 files changed +12
-7
lines changed
services/web/server/requirements
2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1
- from setuptools import setup
1
+ from setuptools import (
2
+ setup ,
3
+ find_packages
4
+ )
2
5
3
6
INSTALL_REQUIRES = [
4
7
'networkx==2.1' ,
5
8
'psycopg2==2.7.4' ,
6
9
'sqlalchemy==1.2.8' ,
7
- 'tenacity==4.12.0'
10
+ 'tenacity==4.12.0' ,
8
11
'trafaret-config==2.0.1'
9
12
]
10
13
21
24
setup (
22
25
name = 'simcore-sdk' ,
23
26
version = '0.1.0' ,
24
- package_dir = {'' : 'src' },
25
- packages = ['simcore_sdk' ],
27
+ packages = find_packages (where = 'src' ),
28
+ package_dir = {
29
+ '' : 'src' ,
30
+ },
26
31
python_requires = '>=3.6' ,
27
- INSTALL_REQUIRES = INSTALL_REQUIRES ,
28
- TEST_REQUIRE = TEST_REQUIRE ,
32
+ install_requires = INSTALL_REQUIRES ,
33
+ tests_require = TEST_REQUIRE ,
29
34
extras_require = {
30
35
'test' : TEST_REQUIRE
31
36
},
Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ passlib==1.7.1
15
15
# psycopg2-binary~=2.7
16
16
python-socketio==1.9.0
17
17
requests==2.19.0
18
- sqlalchemy==1.2.8
18
+ sqlalchemy==1.2.9
19
19
tenacity==4.12.0
20
20
trafaret-config==2.0.1
You can’t perform that action at this time.
0 commit comments