-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 1.09 KB
/
Copy pathsetup.py
File metadata and controls
29 lines (28 loc) · 1.09 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
from setuptools import setup, find_packages
setup(
name="eigen-analysis", # Changed hyphen instead of underscore for PyPI
version="0.1.6",
packages=find_packages(), # This will find the eigen_analysis package automatically
install_requires=[
"numpy>=1.18.0",
"torch>=1.7.0",
"matplotlib>=3.3.0",
"seaborn>=0.11.0",
"scikit-learn>=0.24.0",
"scipy>=1.6.0",
],
author="Lachlan Chen",
author_email="lach@lazyingoronlyideas.art", # Fixed the email address format
description="Eigen-Component Analysis for classification and clustering",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/lachlanchen/eca", # Updated to match your actual repo URL
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.7",
)