Text Classification
English
code
FurkanNar commited on
Commit
f974a69
·
verified ·
1 Parent(s): d907b19

Create setup.py

Browse files
Files changed (1) hide show
  1. setup.py +29 -0
setup.py ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ with open("README.md", "r", encoding="utf-8") as f:
4
+ long_description = f.read()
5
+
6
+ setup(
7
+ name="spatial-context-networks",
8
+ version="0.1.0",
9
+ author="Furkan Nar",
10
+ author_email="furkannar168@hotmail.com",
11
+ description="Geometric Semantic Routing in Neural Architectures",
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
+ url="https://github.com/TheOfficialFurkanNar/spatial-context-networks",
15
+ packages=find_packages(),
16
+ classifiers=[
17
+ "Programming Language :: Python :: 3",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Operating System :: OS Independent",
20
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
21
+ ],
22
+ python_requires=">=3.9",
23
+ install_requires=[
24
+ "torch>=2.0.0",
25
+ ],
26
+ extras_require={
27
+ "dev": ["pytest", "matplotlib", "numpy"],
28
+ },
29
+ )