Skip to content

Commit

Permalink
Updated README.md and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pooya-shams committed May 29, 2020
1 parent e9d48dc commit dbfcd13
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion massspring/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,8 @@ os.environ["PYGAME_HIDE_SUPPORT_PROMPT"] = '1'
(feel free to complete these tasks)

- [x] Add position checker to avoid integer too big error of pygame and python itself.
- [ ] Update the Elastic collision.
- [x] Update the Elastic collision.
- [ ] divide massspring.py to separate modules.
- [ ] Divide the collision to Elastic collision and Inelastic collision.
- [ ] Create non-sphere/non-mass objects.
- [ ] Collision between mass and spring (mass: sphere with mass, spring: line without mass).
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
setup(
name="massspring",
packages=["massspring"],
version='0.0.7',
version='1.0.0',
license='MIT',
description='A 3D mass-spring real world simulator with more types of forces(gravity, electricity, spring, collision, ...)',
long_description=long_description,
long_description_content_type="text/markdown",
author='Pooya Shams kolahi',
author_email='pooya.shams.k@gmail.com',
url='https://github.com/pooya-shams/massspring',
download_url='https://github.com/pooya-shams/massspring/archive/v0.0.7.tar.gz',
download_url='https://github.com/pooya-shams/massspring/archive/v1.0.0.tar.gz',
keywords=["physics",
"physics-3d",
"physics-simulation",
Expand All @@ -26,7 +26,7 @@
"pygame",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
Expand Down

0 comments on commit dbfcd13

Please sign in to comment.