Skip to content

Commit

Permalink
Remove the CLI part and setup.py update, Update the sample_config.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
chenle02 committed Jan 31, 2024
1 parent 3613c6a commit 9c772e7
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 10 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
19 changes: 13 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
from setuptools import setup, find_packages


# Assuming your README is in Markdown
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name='tetris_ballistic',
version='1.2.0',
version='1.2.2',
packages=find_packages(),
entry_points={
'console_scripts': [
'tetrisBD=tetris_ballistic.cli.main:cli',
],
},
# entry_points={
# 'console_scripts': [
# 'tetrisBD=tetris_ballistic.cli.main:cli',
# ],
# },
# include any other necessary setup options here
long_description=long_description,
long_description_content_type="text/markdown",
)
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
width: 10
height: 42
steps: 90
seed: -2
width: 20
height: 40
steps: 800
seed: 42
Piece-0: [4, 1]
Piece-1: [4, 1]
Piece-2: [2, 1]
Expand Down

0 comments on commit 9c772e7

Please sign in to comment.