uploaded first version! :D

This commit is contained in:
2026-06-20 12:15:52 +10:00
parent 4734744f59
commit 1e7a65a5e3
5 changed files with 15 additions and 5 deletions

View File

@@ -10,5 +10,5 @@ fi
pip install --upgrade pip pip install --upgrade pip
pip install -r requirements.txt 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; } pip install . || { echo "pip install failed!"; exit 1; }

View File

@@ -17,3 +17,10 @@ Or if you wish to install a particular version:
neb install packageName@1.0.0 neb install packageName@1.0.0
``` ```
(replace the number with the version number of the package you want to install) (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

View File

@@ -6,7 +6,7 @@ from .install import install
from .pull import pull from .pull import pull
from .list import list_packages from .list import list_packages
__VERSION__ = "1.0.0" __VERSION__ = "1.0.1"
def main() -> int: def main() -> int:

View File

@@ -10,6 +10,7 @@ fi
pip install --upgrade pip pip install --upgrade pip
pip install -r requirements.txt 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; } twine check dist/* || { echo "twine check failed!"; exit 1; }
twine upload dist/* || { echo "twine upload failed!"; exit 1; }

View File

@@ -1,11 +1,12 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
from neb.src.main import __VERSION__
with open("neb/README.md", "r") as f: with open("neb/README.md", "r") as f:
long_description = f.read() long_description = f.read()
setup( setup(
name="nebpkg", name="nebpkg",
version="1.0", version=__VERSION__,
description="Nebula, the package manager for the Comet programming language.", description="Nebula, the package manager for the Comet programming language.",
classifiers=[ classifiers=[
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
@@ -21,6 +22,7 @@ setup(
author="Nathaniel Chandler", author="Nathaniel Chandler",
license="GPLv3", license="GPLv3",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(), packages=find_packages(),
install_requires=[ install_requires=[
"rich>=15.0.0", "rich>=15.0.0",