Skip to content

Commit

Permalink
Preparation for 1.0.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
pwaller committed Sep 1, 2023
1 parent a2d128b commit 41d226b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 11 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ clean:

minimal: clean
cp pyfiglet/fonts-standard/* pyfiglet/fonts
python setup.py sdist bdist_wheel
python3 -m build

full: clean
cp pyfiglet/fonts-standard/* pyfiglet/fonts
cp pyfiglet/fonts-contrib/* pyfiglet/fonts
python setup.py sdist bdist_wheel
python3 -m build

publish:
python setup.py upload
python3 -m twine check dist/*
python3 -m twine upload dist/*
15 changes: 8 additions & 7 deletions README.rst → README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# **pyfiglet**

```
_|_| _| _| _|
_|_|_| _| _| _| _|_|_| _| _|_| _|_|_|_|
_| _| _| _| _|_|_|_| _| _| _| _| _|_|_|_| _|
_| _| _| _| _| _| _| _| _| _| _|
_|_|_| _|_|_| _| _| _|_|_| _| _|_|_| _|_|
_| _| _|
_| _|_| _|_|
_|_| _| _| _|
_|_|_| _| _| _| _|_|_| _| _|_| _|_|_|_|
_| _| _| _| _|_|_|_| _| _| _| _| _|_|_|_| _|
_| _| _| _| _| _| _| _| _| _| _|
_|_|_| _|_|_| _| _| _|_|_| _| _|_|_| _|_|
_| _| _|
_| _|_| _|_|
```

## **Synopsis**

pyfiglet is a full port of FIGlet (http://www.figlet.org/) into pure
Expand Down
2 changes: 1 addition & 1 deletion pyfiglet/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.8.post1'
__version__ = '1.0.0rc1'
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=68.0.0"]
build-backend = "setuptools.build_meta:__legacy__"
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ def get_version():
name='pyfiglet',
version=get_version(),
description='Pure-python FIGlet implementation',
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 41d226b

Please sign in to comment.