-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (53 loc) · 1.78 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (53 loc) · 1.78 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
BACKTEST_REQUIREMENTS = ["pyarrow==24.0.0"]
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="structural-isomorphism",
version="0.1.0",
author="Qihang Wan",
description="Cross-domain structural similarity search engine",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dada8899/structural-isomorphism",
packages=find_packages(),
python_requires=">=3.10",
install_requires=[
# Core engine
"sentence-transformers>=2.0",
"numpy",
"torch",
# Statistical / data processing (used by phase detector, validation,
# tutorial reproductions, and the active-learning simulation)
"scipy",
"pandas",
"powerlaw",
"requests",
"matplotlib",
],
extras_require={
"demo": ["gradio>=4.0"],
"tutorials": ["jupyter", "matplotlib", "powerlaw"],
"backtest": BACKTEST_REQUIREMENTS,
"dev": ["scikit-learn", "pytest", "black", "ruff", *BACKTEST_REQUIREMENTS],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
package_data={
"structural_isomorphism": ["data/*.jsonl"],
},
entry_points={
"console_scripts": [
"v4=v4.cli:main",
],
},
)