Skip to content

Commit e5323e9

Browse files
release 0.0.2
1 parent 8d387c2 commit e5323e9

File tree

3 files changed

+36
-4
lines changed

3 files changed

+36
-4
lines changed

10_cubes_spheres.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
"""
2-
IMPORTANT: switch Mu mode to "Pygame Zero" or
3-
nothing will appear!
2+
IMPORTANT: switch Mu mode to "Python 3"
43
"""
54
from 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

109
cube1 = Cube((25, 0, 0))
1110
cube2 = Cube((-25, 0, 0))

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include richlib/*
2+
include richlib/models/*

setup.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
)

0 commit comments

Comments
 (0)