Files
Nebula/setup.py

35 lines
1.0 KiB
Python
Raw Normal View History

from setuptools import setup, find_packages
with open("neb/README.md", "r") as f:
long_description = f.read()
setup(
name="nebpkg",
2026-06-20 17:09:35 +10:00
version="1.1.0",
description="Nebula, the package manager for the Comet programming language.",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Libraries",
],
author="Nathaniel Chandler",
license="GPLv3",
long_description=long_description,
2026-06-20 12:15:52 +10:00
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"rich>=15.0.0",
"requests>=2.34.2"
],
entry_points={
"console_scripts": [
"neb = neb:main"
]
}
)