uploaded first version! :D
This commit is contained in:
@@ -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; }
|
||||
@@ -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
|
||||
@@ -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:
|
||||
|
||||
@@ -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; }
|
||||
twine upload dist/* || { echo "twine upload failed!"; exit 1; }
|
||||
4
setup.py
4
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",
|
||||
|
||||
Reference in New Issue
Block a user