Update setup.py
Browse files
setup.py
CHANGED
|
@@ -1,28 +1,15 @@
|
|
| 1 |
from setuptools import setup, find_packages
|
| 2 |
|
| 3 |
setup(
|
| 4 |
-
name="
|
| 5 |
version="0.1.0",
|
| 6 |
packages=find_packages(),
|
| 7 |
install_requires=[
|
| 8 |
-
"torch>=1.
|
| 9 |
-
"numpy>=1.19.0"
|
| 10 |
],
|
| 11 |
-
author="
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
long_description_content_type="text/markdown",
|
| 16 |
-
url="https://github.com/yourusername/cognitive-net",
|
| 17 |
-
classifiers=[
|
| 18 |
-
"Development Status :: 3 - Alpha",
|
| 19 |
-
"Intended Audience :: Science/Research",
|
| 20 |
-
"License :: OSI Approved :: MIT License",
|
| 21 |
-
"Programming Language :: Python :: 3",
|
| 22 |
-
"Programming Language :: Python :: 3.7",
|
| 23 |
-
"Programming Language :: Python :: 3.8",
|
| 24 |
-
"Programming Language :: Python :: 3.9",
|
| 25 |
-
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
| 26 |
-
],
|
| 27 |
-
python_requires=">=3.7",
|
| 28 |
)
|
|
|
|
| 1 |
from setuptools import setup, find_packages
|
| 2 |
|
| 3 |
setup(
|
| 4 |
+
name="cognitive_net",
|
| 5 |
version="0.1.0",
|
| 6 |
packages=find_packages(),
|
| 7 |
install_requires=[
|
| 8 |
+
"torch>=1.9.0",
|
| 9 |
+
"numpy>=1.19.0"
|
| 10 |
],
|
| 11 |
+
author="VLabTech",
|
| 12 |
+
description="A cognitive neural network with dynamic memory and emotional modulation",
|
| 13 |
+
keywords="neural network, cognitive computing, deep learning",
|
| 14 |
+
python_requires=">=3.7"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
)
|