-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.03 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.03 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
"""
fishstick - Package Configuration
"""
from setuptools import setup, find_packages
setup(
name="fishstick",
version="0.1.0",
description="A mathematically rigorous, physically grounded AI framework",
author="NeuralBlitz",
packages=find_packages(),
python_requires=">=3.9",
install_requires=[
"torch>=2.0",
"numpy>=1.21",
"scipy>=1.7",
"pyyaml>=6.0",
],
extras_require={
"dev": [
"pytest>=7.0",
"black>=23.0",
"mypy>=1.0",
],
"full": [
"gudhi>=3.8",
"giotto-tda>=0.6",
"kmapper>=2.0",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)