Create setup.py
Browse files
setup.py
ADDED
@@ -0,0 +1,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.8.0",
|
9 |
+
"numpy>=1.19.0",
|
10 |
+
],
|
11 |
+
author="Your Name",
|
12 |
+
author_email="[email protected]",
|
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 |
+
)
|