vincentiusyoshuac commited on
Commit
7446568
·
verified ·
1 Parent(s): 9d2804b

Update setup.py

Browse files
Files changed (1) hide show
  1. setup.py +7 -20
setup.py CHANGED
@@ -1,28 +1,15 @@
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.8.0",
9
- "numpy>=1.19.0",
10
  ],
11
- author="Your Name",
12
- author_email="your.email@example.com",
13
- description="A differentiable cognitive network with dynamic structure learning",
14
- long_description=open("README.md").read(),
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
  )