From 1e7a65a5e32e3fc59bff8b8ab68b1a209dc49498 Mon Sep 17 00:00:00 2001 From: SpookyDervish Date: Sat, 20 Jun 2026 12:15:52 +1000 Subject: [PATCH] uploaded first version! :D --- install_local.sh | 2 +- neb/README.md | 7 +++++++ neb/src/main.py | 2 +- publish.sh | 5 +++-- setup.py | 4 +++- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/install_local.sh b/install_local.sh index 9937ce8..29163ec 100755 --- a/install_local.sh +++ b/install_local.sh @@ -10,5 +10,5 @@ fi pip install --upgrade pip pip install -r requirements.txt -python setup.py sdist || { echo "setup.py failed!"; exit 1; } +python setup.py sdist bdist_wheel || { echo "setup.py failed!"; exit 1; } pip install . || { echo "pip install failed!"; exit 1; } \ No newline at end of file diff --git a/neb/README.md b/neb/README.md index b9302ef..84f5f13 100644 --- a/neb/README.md +++ b/neb/README.md @@ -17,3 +17,10 @@ Or if you wish to install a particular version: neb install packageName@1.0.0 ``` (replace the number with the version number of the package you want to install) + +## Changelog +### 1.0.1 +- Fix long description hopefully + +### 1.0.0 +- Initial release \ No newline at end of file diff --git a/neb/src/main.py b/neb/src/main.py index 0812ac3..776bdb8 100644 --- a/neb/src/main.py +++ b/neb/src/main.py @@ -6,7 +6,7 @@ from .install import install from .pull import pull from .list import list_packages -__VERSION__ = "1.0.0" +__VERSION__ = "1.0.1" def main() -> int: diff --git a/publish.sh b/publish.sh index 5f3ba8a..4d8e8b3 100755 --- a/publish.sh +++ b/publish.sh @@ -10,6 +10,7 @@ fi pip install --upgrade pip pip install -r requirements.txt -python setup.py || { echo "setup.py failed!"; exit 1; } +python setup.py sdist bdist_wheel || { echo "setup.py failed!"; exit 1; } -twine check dist/* || { echo "twine check failed!"; exit 1; } \ No newline at end of file +twine check dist/* || { echo "twine check failed!"; exit 1; } +twine upload dist/* || { echo "twine upload failed!"; exit 1; } \ No newline at end of file diff --git a/setup.py b/setup.py index 3e812da..3928248 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,12 @@ from setuptools import setup, find_packages +from neb.src.main import __VERSION__ with open("neb/README.md", "r") as f: long_description = f.read() setup( name="nebpkg", - version="1.0", + version=__VERSION__, description="Nebula, the package manager for the Comet programming language.", classifiers=[ "Development Status :: 4 - Beta", @@ -21,6 +22,7 @@ setup( author="Nathaniel Chandler", license="GPLv3", long_description=long_description, + long_description_content_type="text/markdown", packages=find_packages(), install_requires=[ "rich>=15.0.0",