begin work on actually getting installing working
This commit is contained in:
34
setup.py
Normal file
34
setup.py
Normal file
@@ -0,0 +1,34 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
with open("neb/README.md", "r") as f:
|
||||
long_description = f.read()
|
||||
|
||||
setup(
|
||||
name="nebpkg",
|
||||
version="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,
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
"rich>=15.0.0",
|
||||
"requests>=2.34.2"
|
||||
],
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"neb = neb:main"
|
||||
]
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user