-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfor_developers.txt
More file actions
20 lines (20 loc) · 918 Bytes
/
for_developers.txt
File metadata and controls
20 lines (20 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|==========================================|
|============== FOR LINUX =================|
|==========================================|
| |
| 1. Check Linter Output: |
| $ pylint $(git ls-files '*.py') |
| |
|==========================================|
| |
| 2. Run tests: |
| $ python3 -m pytest |
| |
|==========================================|
| |
| 3. Ship package to PyPI |
| |
| python3 setup.py sdist bdist_wheel |
| twine upload dist/* |
| |
|==========================================|