CofeehousePy/Makefile

31 lines
962 B
Makefile
Raw Normal View History

2020-12-25 20:16:54 +01:00
clean:
2020-12-25 20:24:45 +01:00
# APT Mod
2020-12-25 20:35:34 +01:00
rm -rf mods/apt/build mods/apt/dist mods/apt/coffeehousemod_apt.egg-info
2020-12-25 20:24:45 +01:00
# Stopwords Mod
2020-12-25 20:35:34 +01:00
rm -rf mods/stopwords/build mods/stopwords/dist mods/stopwords/coffeehousemod_stopwords.egg-info
2020-12-25 20:24:45 +01:00
# Tokenizer Mod
2020-12-25 20:35:34 +01:00
rm -rf mods/tokenizer/build mods/tokenizer/dist mods/tokenizer/coffeehousemod_tokenizer.egg-info
2020-12-25 20:24:45 +01:00
# Deep Learning Text Classification
2020-12-25 20:35:34 +01:00
rm -rf dltc/build dltc/dist dltc/coffeehouse_dltc dltc/coffeehouse_dltc.egg-info
2020-12-25 20:16:54 +01:00
build:
2020-12-25 20:24:45 +01:00
# APT Mod
2020-12-25 20:35:34 +01:00
cd mods/apt; python3 setup.py build; python3 setup.py sdist
2020-12-25 20:24:45 +01:00
# Stopwords Mod
2020-12-25 20:35:34 +01:00
cd mods/stopwords; python3 setup.py build; python3 setup.py sdist
2020-12-25 20:24:45 +01:00
# Tokenizer Mod
2020-12-25 20:35:34 +01:00
cd mods/tokenizer; python3 setup.py build; python3 setup.py sdist
2020-12-25 20:24:45 +01:00
# Deep Learning Text Classification
2020-12-25 20:35:34 +01:00
cd dltc; python3 setup.py build; python3 setup.py sdist
2020-12-25 20:16:54 +01:00
install:
2020-12-25 20:35:34 +01:00
cd mods/apt; python3 setup.py install
cd mods/stopwords; python3 setup.py install
cd mods/tokenizer; python3 setup.py install
cd dltc; python3 setup.py install