Skip to content

Commit

Permalink
build: Build 0.3.1
Browse files Browse the repository at this point in the history
Added in Makefile targets for building process
  • Loading branch information
ssoto committed Jan 28, 2025
1 parent c38fdcd commit ef8fd21
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
20 changes: 20 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

setup-build-tools:
@echo "Setting up build tools..."
@. .venv/bin/activate && python -m pip install build twine

build:
@echo "Building..."
@if [ -d "dist" ]; then \
echo "WARNING: Clean dist directory first."; \
exit 1; \
fi
@python -m build

publish:
@echo "Publishing..."
@. .venv/bin/activate && twine upload dist/*

clean:
@echo "Cleaning..."
@rm -rf dist build *.egg-info
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@

setup(
name='andaluh',
version='0.2.1',
version='0.3.1',
description='Transliterate español (spanish) spelling to andaluz proposals',
long_description=long_description,
long_description_content_type='text/markdown',
author='J. Félix Ontañón',
author_email='felixonta@gmail.com',
author_email='andalugeeks@gmail.com',
url='https://andaluh.es',
project_urls={
"Source Code": "https://github.com/andalugeeks/andaluh-py"
},
python_requires=">=3.5,<3.13",
platforms=['win32', 'linux2', 'darwin'],
python_requires=">=3.5",
platforms=['win32', 'linux2'],
license='GNU LESSER GENERAL PUBLIC LICENSE',
classifiers=[
"Topic :: Text Processing",
Expand Down

0 comments on commit ef8fd21

Please sign in to comment.