-
Notifications
You must be signed in to change notification settings - Fork 0
/
package_manage.sh
executable file
·55 lines (45 loc) · 1.18 KB
/
package_manage.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
## Installation comamnds
pip uninstall pydair -y
pip install --no-deps -e .
## Clean up
#rm -rf PyDAIR.egg-info
#rm -rf build
rm ./PyDAIR/test/data/test_output_*
rm ./PyDAIR/test/data/results/*
rm ./PyDAIR/*.pyc
rm ./PyDAIR/.DS_Store
rm ./PyDAIR/bin/*.pyc
rm ./PyDAIR/bin/.DS_Store
rm ./PyDAIR/app/*.pyc
rm ./PyDAIR/app/.DS_Store
rm ./PyDAIR/io/*.pyc
rm ./PyDAIR/io/.DS_Store
rm ./PyDAIR/plot/*.pyc
rm ./PyDAIR/plot/.DS_Store
rm ./PyDAIR/seq/*.pyc
rm ./PyDAIR/seq/.DS_Store
rm ./PyDAIR/stats/*.pyc
rm ./PyDAIR/stats/.DS_Store
rm ./PyDAIR/templates/*.pyc
rm ./PyDAIR/templates/.DS_Store
rm ./PyDAIR/test/*.pyc
rm ./PyDAIR/test/.DS_Store
rm ./PyDAIR/utils/*.pyc
rm ./PyDAIR/utils/.DS_Store
rm ./PyDAIR/sim/*.pyc
rm ./PyDAIR/sim/.DS_Store
rm -rf ./PyDAIR/__pycache__
rm -rf ./PyDAIR/app/__pycache__
rm -rf ./PyDAIR/bin/__pycache__
rm -rf ./PyDAIR/io/__pycache__
rm -rf ./PyDAIR/plot/__pycache__
rm -rf ./PyDAIR/seq/__pycache__
rm -rf ./PyDAIR/sim/__pycache__
rm -rf ./PyDAIR/stats/__pycache__
rm -rf ./PyDAIR/test/__pycache__
rm -rf ./PyDAIR/utils/__pycache__
## PyPI registration commands
# python setup.py sdist
# python setup.py bdist_wheel --universal
# python setup.py sdist upload