Skip to content

Commit

Permalink
release 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
electronstudio committed Jun 26, 2019
1 parent 8d387c2 commit e5323e9
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 4 deletions.
7 changes: 3 additions & 4 deletions 10_cubes_spheres.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
"""
IMPORTANT: switch Mu mode to "Pygame Zero" or
nothing will appear!
IMPORTANT: switch Mu mode to "Python 3"
"""
from richlib import *

WIDTH = 500 # What are these units? What if we change them?
HEIGHT = 500 # What if we delete this line?
WIDTH = 500
HEIGHT = 500

cube1 = Cube((25, 0, 0))
cube2 = Cube((-25, 0, 0))
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include richlib/*
include richlib/models/*
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import pathlib
from setuptools import setup

# The directory containing this file
HERE = pathlib.Path(__file__).parent

# The text of the README file
README = (HERE / "README.md").read_text()

# This call to setup() does all the work
setup(
name="richlib",
version="0.0.2",
description="Pygame Zero like API to teach 3d games programming based on Raylib",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/electronstudio/richlib",
author="Electron Studio",
author_email="[email protected]",
license="LGPLv3+",
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
packages=["richlib"],
include_package_data=True,
install_requires=["raylib"]
)

0 comments on commit e5323e9

Please sign in to comment.