V
V
Viktor Paperno2015-01-18 15:14:08
Python
Viktor Paperno, 2015-01-18 15:14:08

How to put a Python project on github?

There is a project in Python. It consists of two .py files. And there is a folder with a program compiled into .exe, how to put it all on github? Need detailed instructions.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Andrey Myvrenik, 2015-01-18
@AviPaperno

  • Need to formulate a setup.py script: https://docs.python.org/3/distutils/setupscript.html
  • You can choose a license, in brief you can find out the essence of different licenses on the website https://tldrlegal.com/
  • Write an informative README file, lots of examples . Preferably in Markdown.
  • Be sure to write a gitignore file so that this same .exe file is not added to the repository.

When everything is ready, you can upload it to GitHub. You can also learn more about this here: https://help.github.com/
And of course, it's better to know how to work with Git in principle: www.git-scm.com/documentation

O
one pavel, 2015-01-18
@onepavel

When you create a github repository, it describes the step-by-step steps for uploading.

N
Nikolai Vinogradov, 2015-01-18
@Kibastus

Here is the most detailed instructions.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question