Closed Rafi993 closed 6 years ago
You could see the fork here https://github.com/Rafi993/Python-Scripts to see how it is displayed at bottom
did you added your name to the list yet?
Yes I did. Could you post repo the link to this git page http://www.logan1x.me/Python-Scripts/
Could you post repo the link to this git page
Didn't Understand?π
I have created a git page for this repo here it is https://rafi993.github.io/python_scripts_page/ Here is the repo link for git page https://github.com/Rafi993/python_scripts_page. It is very rudimentary page I built in a couple of minutes so it could use some improvements.
It the above git page is ok I could merge its code with your repo / branch that your git page is currently pointing to now.
You have written tags (that's lot work for me π ). Thank you for making this project alive again.
Hey @Rafi993, I've added you as a maintainer of this project. Check this link if you choose this taskπ.
I have added the git page source inside docs folder. Now just point docs folder in master in git page settings. So that it will become new git page.
@Rafi993 I've done this and now I want to config Travis CI for this project. So if you know how to integrate CI, you could help me outπ
you just need to add dependencies for all the scripts in a single requirement.txt and we need to write unit tests. So our .travis.yml will look like this
language: python
python:
- "3.3"
- "3.4"
- "3.6"
# command to install dependencies
install:
- pip install coveralls
- pip install pep8
- pip install -r requirements.txt
# command to run tests
script:
- pep8 --max-line-length 5000 bin
- pytest
after_success:
- coveralls
I've created requirement.txt, I'll add dependencies as soon as I get time.
So where do I need to add .travis.yml? in the repo or at Travis ci config page?
Are those setting are right ?
could you switch on the first setting in general
contributors script added which gets the name of the repo and generates list of contributors images as a markdown file after resizing their profile pic to standard size and README.md updated with it.