File tree Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 1
1
* Use anonymous credentials by default instead of iam metadata (use ydb.driver.credentials_from_env_variables for creds by env var)
2
2
* Close grpc streams while closing readers/writers
3
3
* Add control plane operations for topic api: create, drop
4
+ * Add six package to requirements
4
5
5
6
## 3.0.1b4 ##
6
7
* Initial implementation of topic reader
Original file line number Diff line number Diff line change
1
+ include requirements.txt
Original file line number Diff line number Diff line change
1
+ aiohttp >= 3.7.4 ,< 4.0.0
2
+ enum-compat >= 0.0.1
1
3
grpcio >= 1.42.0
2
4
packaging
3
- protobuf >= 3.13.0 ,< 5.0.0
4
- aiohttp >= 3.7.4 , < 4.0.0
5
+ protobuf > 3.13.0 ,< 5.0.0
6
+ six < 2
Original file line number Diff line number Diff line change 4
4
with open ("README.md" , "r" ) as r :
5
5
long_description = r .read ()
6
6
7
+ with open ("requirements.txt" ) as r :
8
+ requirements = []
9
+ for line in r .readlines ():
10
+ line = line .strip ()
11
+ if line != "" :
12
+ requirements .append (line )
13
+
7
14
setuptools .setup (
8
15
name = "ydb" ,
9
16
version = "3.0.1b4" , # AUTOVERSION
23
30
"Programming Language :: Python :: 3" ,
24
31
"Programming Language :: Python :: 3.6" ,
25
32
],
26
- install_requires = (
27
- "protobuf>=3.13.0" ,
28
- "grpcio>=1.5.0" ,
29
- "enum-compat>=0.0.1" ,
30
- "packaging"
31
- ),
33
+ install_requires = requirements , # requirements.txt
32
34
options = {"bdist_wheel" : {"universal" : True }},
33
35
extras_require = {
34
36
"yc" : ["yandexcloud" , ],
You can’t perform that action at this time.
0 commit comments