File tree Expand file tree Collapse file tree 3 files changed +36
-4
lines changed
Expand file tree Collapse file tree 3 files changed +36
-4
lines changed Original file line number Diff line number Diff line change 11"""
2- IMPORTANT: switch Mu mode to "Pygame Zero" or
3- nothing will appear!
2+ IMPORTANT: switch Mu mode to "Python 3"
43"""
54from richlib import *
65
7- WIDTH = 500 # What are these units? What if we change them?
8- HEIGHT = 500 # What if we delete this line?
6+ WIDTH = 500
7+ HEIGHT = 500
98
109cube1 = Cube ((25 , 0 , 0 ))
1110cube2 = Cube ((- 25 , 0 , 0 ))
Original file line number Diff line number Diff line change 1+ include richlib/*
2+ include richlib/models/*
Original file line number Diff line number Diff line change 1+ import pathlib
2+ from setuptools import setup
3+
4+ # The directory containing this file
5+ HERE = pathlib .Path (__file__ ).parent
6+
7+ # The text of the README file
8+ README = (HERE / "README.md" ).read_text ()
9+
10+ # This call to setup() does all the work
11+ setup (
12+ name = "richlib" ,
13+ version = "0.0.2" ,
14+ description = "Pygame Zero like API to teach 3d games programming based on Raylib" ,
15+ long_description = README ,
16+ long_description_content_type = "text/markdown" ,
17+ url = "https://github.com/electronstudio/richlib" ,
18+ author = "Electron Studio" ,
19+ author_email = "github@electronstudio.co.uk" ,
20+ license = "LGPLv3+" ,
21+ classifiers = [
22+ "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)" ,
23+ "Programming Language :: Python :: 3" ,
24+ "Programming Language :: Python :: 3.5" ,
25+ "Programming Language :: Python :: 3.6" ,
26+ "Programming Language :: Python :: 3.7" ,
27+ ],
28+ packages = ["richlib" ],
29+ include_package_data = True ,
30+ install_requires = ["raylib" ]
31+ )
You can’t perform that action at this time.
0 commit comments