-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 891 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup, find_packages
setup(
name="orthos-neuro",
version="5.0.0",
description="ORTHOS: Orthogonal Recursive Hierarchical Optimization System - Probabilistic neural architecture",
author="ORTHOS Team",
author_email="dev@orthos.ai",
packages=find_packages(),
install_requires=[
"numpy>=1.20.0",
"matplotlib>=3.3.0",
"scipy>=1.6.0",
],
extras_require={
"gpu": ["cupy>=9.0.0"],
"dev": ["pytest", "black", "mypy", "flake8"]
},
python_requires=">=3.8",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)