Commit 0f80894 1 parent d2dff15 commit 0f80894 Copy full SHA for 0f80894
File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change
1
+ openpyxl<4.0.0
2
+ pandas<3.0.0
3
+ xlrd<3.0.0
Original file line number Diff line number Diff line change @@ -18,12 +18,17 @@ def read_version():
18
18
with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
19
19
long_description = fh .read ()
20
20
21
- requirements_file = os . getenv ( 'REQUIREMENTS' , ' requirements/base.txt' )
21
+ requirements_file = " requirements/base.txt"
22
22
23
23
# Read requirements/base.txt for install_requires
24
24
with open (requirements_file , encoding = "utf-8" ) as f :
25
25
install_requires = f .read ().splitlines ()
26
-
26
+
27
+ data_extras_file = "requirements/data.txt"
28
+
29
+ with open (data_extras_file , encoding = "utf-8" ) as f :
30
+ install_extras_data = f .read ().splitlines ()
31
+
27
32
setup (
28
33
name = 'libreforms_fastapi' ,
29
34
version = version ,
@@ -46,4 +51,7 @@ def read_version():
46
51
'libreformsctl=libreforms_fastapi.cli.__init__:cli' ,
47
52
],
48
53
},
54
+ extras_require = {
55
+ "data" : install_extras_data ,
56
+ },
49
57
)
You can’t perform that action at this time.
0 commit comments