Python Forum
Python project "pong" without any makefile
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python project "pong" without any makefile
#1
To Meukburr. I put your pong project on Pycharm. It works well, but I am surprised not to find any "makefile", as ordinary with C++. Even no "idea" appears on Pycharm. I should like you give me some explanations. Many thanks.
Reply
#2
What would a makefile do in python?  There's nothing to make, nothing to compile.  The closest would be a setup.py, but that's only if you wanted to install it.  Or a piplock file, so virtual env could download any needed dependencies.
Reply
#3
Quote:I am surprised not to find any "makefile", as ordinary with C++
Thats because its written in python, not C++

But i did leave th setup script i used to build the exe with
https://github.com/metulburr/pong/blob/master/setup.py
but that is not going to install it, only build an exe with py2exe
Recommended Tutorials:
Reply
#4
Quote:Even no "idea" appears on Pycharm.
Each package that is maintained by PyCharm contains a .idea directory at the beginning of the package.
It's not a 'make' file, as nilamo and metulburr already stated, one would serve no purpose.
It contains information on encoding, project version, configuration, IDE editor style, etc.
in addition, if you use a VCS, there will be a file for that (I use Git, so there's a .git directory).
Reply
#5
(Nov-28-2017, 06:50 AM)Larz60+ Wrote:
Quote:Even no "idea" appears on Pycharm.
Each package that is maintained by PyCharm contains a .idea directory at the beginning of the package.
It's not a 'make' file, as nilamo and metulburr already stated, one would serve no purpose.
It contains information on encoding, project version, configuration, IDE editor style, etc.
in addition, if you use a VCS, there will be a file for that (I use Git, so there's a .git directory).

So the idea is PyCharm's package config file?

In that case there wouldnt be any because i didnt write it in PyCharm. And even if i did, i probably wouldnt upload it into the repo as its only pertaining to that one IDE.
Recommended Tutorials:
Reply
#6
It is a setup file of sorts
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to send a pong on websocket-client tomtom 0 3,628 Aug-15-2022, 05:58 AM
Last Post: tomtom
  Problem with my pong game code Than999 8 3,837 May-15-2022, 06:40 AM
Last Post: deanhystad
  make: *** [Makefile:29: all] Segmentation fault Anldra12 2 1,871 May-01-2022, 06:17 PM
Last Post: Anldra12
  Pong game buss0140 7 4,079 Dec-27-2020, 07:04 AM
Last Post: ndc85430
  scoring issues in pong wildbill 1 2,199 Aug-05-2019, 01:48 AM
Last Post: metulburr
  PING PONG GAME akea 0 5,683 May-08-2019, 04:30 PM
Last Post: akea
  How to make Python MakeFile artblinked 1 4,249 Feb-22-2019, 03:09 PM
Last Post: artblinked
  ping and pong run both well sylas 1 3,167 Sep-24-2017, 05:14 PM
Last Post: sylas

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020