Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
name: Deploy Docs to GitHub Pages
name: Trigger Docs Deployment to GitHub Pages
on:
push:
branches: [ main ] # Trigger on main branch updates
paths: [ 'web/**' ] # Only if files in 'web/' change

jobs:
deploy:
Expand All @@ -13,6 +12,5 @@ jobs:
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: main # Branch in UniversalPython.github.io repo
folder: web # Folder to deploy
repository: UniversalPython/UniversalPython.github.io
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Install UniversalPython with pip:
pip install universalpython
```

See more details about the package on [PyPi](https://pypi.org/project/universalpython/).
See more details about the package on [PyPI](https://pypi.org/project/universalpython/).

### Online Playground

Expand Down
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ build-backend = "setuptools.build_meta"

[project]
name = "universalpython"
version = "0.1.4"
version = "0.1.5"
authors = [
{name = "Saad Bazaz", email = "saadbazaz@hotmail.com"},
]
description = "Universal Python - Write Python in your native language"
description = "UniversalPython - Write Python in your native language"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
Expand All @@ -30,7 +29,7 @@ dependencies = [
]

[project.urls]
Homepage = "https://github.com/UniversalPython/UniversalPython"
Homepage = "https://universalpython.github.io"
Repository = "https://github.com/UniversalPython/UniversalPython"
Issues = "https://github.com/UniversalPython/UniversalPython/issues"

Expand All @@ -40,7 +39,7 @@ Issues = "https://github.com/UniversalPython/UniversalPython/issues"
packages = ["universalpython"]

[tool.setuptools.package-data]
universalpython = ["samples/*/*", "languages/*/*.yaml"]
universalpython = ["languages/**/*.yaml", "modes/*.py"]

[project.scripts]
universalpython = "universalpython.universalpython:main"
Loading