36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
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=__VERSION__,
|
|
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,
|
|
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"
|
|
]
|
|
}
|
|
) |