Logan1x / Python-Scripts

Collection of Various Python Script's.πŸ’»
https://logan1x.github.io/Python-Scripts/
MIT License
306 stars 147 forks source link

contributors script added and README.md updated with it #88

Closed Rafi993 closed 6 years ago

Rafi993 commented 6 years ago

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.

Rafi993 commented 6 years ago

You could see the fork here https://github.com/Rafi993/Python-Scripts to see how it is displayed at bottom

Logan1x commented 6 years ago

did you added your name to the list yet?

Rafi993 commented 6 years ago

Yes I did. Could you post repo the link to this git page http://www.logan1x.me/Python-Scripts/

Logan1x commented 6 years ago

Could you post repo the link to this git page

Didn't Understand?πŸ˜•

Rafi993 commented 6 years ago

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.

Rafi993 commented 6 years ago

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.

Logan1x commented 6 years ago

You have written tags (that's lot work for me πŸ˜…). Thank you for making this project alive again.

Logan1x commented 6 years ago

the last script yt.py does not have warnings. Please add them.

Logan1x commented 6 years ago

Hey @Rafi993, I've added you as a maintainer of this project. Check this link if you choose this taskπŸ˜›.

Rafi993 commented 6 years ago

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.

Logan1x commented 6 years ago

@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πŸ˜„

Rafi993 commented 6 years ago

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
Logan1x commented 6 years ago

I've created requirement.txt, I'll add dependencies as soon as I get time.

Logan1x commented 6 years ago

So where do I need to add .travis.yml? in the repo or at Travis ci config page?

Rafi993 commented 6 years ago

https://github.com/Logan1x/Python-Scripts/blob/master/.travis.yml

Logan1x commented 6 years ago

image Are those setting are right ?

Rafi993 commented 6 years ago

could you switch on the first setting in general