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

@@ -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",