File tree 2 files changed +12
-16
lines changed
2 files changed +12
-16
lines changed Original file line number Diff line number Diff line change 1
1
recursive-include tools *
2
- include taipy/core/*.json
3
- include taipy/core/config/*.json
2
+ # Package taipy
4
3
include taipy/*.json
5
4
include taipy/gui_core/*.json
6
5
include taipy/gui_core/lib/*.js
7
- recursive-include taipy/gui/webapp *
6
+ # Package taipy-config
7
+ include taipy/config/*.pyi
8
+ include taipy/config/*.json
9
+ # Package taipy-core
10
+ include taipy/core/*.json
11
+ include taipy/core/config/*.json
12
+ # Package taipy-gui
13
+ recursive-include webapp *
8
14
include taipy/gui/version.json
9
15
include taipy/gui/viselements.json
10
16
include taipy/gui/*.pyi
11
- include taipy/config/*.pyi
12
- include taipy/config/*.json
13
- recursive-include taipy/templates *
17
+ # Package taipy-rest
14
18
include taipy/rest/*.json
19
+ # Package taipy-templates
20
+ recursive-include taipy/templates *
Original file line number Diff line number Diff line change 31
31
if vext := version .get ("ext" ):
32
32
version_string = f"{ version_string } .{ vext } "
33
33
34
- # build MANIFEST.in from tools/packages/taipy*/MANIFEST.in
35
- with open (os .path .join (root_folder , "MANIFEST.in" ), "a" ) as man :
36
- for pman in [
37
- dir / "MANIFEST.in"
38
- for dir in (root_folder / "tools" / "packages" ).iterdir ()
39
- if dir .is_dir () and dir .stem .startswith ("taipy" )
40
- ]:
41
- man .write (pman .read_text ("UTF-8" ))
42
-
43
-
44
34
def get_requirements ():
45
35
# get requirements from the different setups in tools/packages (removing taipy packages)
46
36
reqs = set ()
You can’t perform that action at this time.
0 commit comments