deltafstation 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,86 @@
1
+ # DeltaFStation .gitignore
2
+
3
+ # 数据文件夹(默认忽略,按白名单放行)
4
+ data/*
5
+ data_cache/
6
+ !data/strategies/
7
+ !data/strategies/*.py
8
+ !data/raw/
9
+ data/raw/*
10
+ !data/raw/symbols_dict_miniqmt.json
11
+ !data/raw/symbols_dict_yfinance.json
12
+ !data/raw/000001.SS.csv
13
+ !data/raw/BTC-USD.csv
14
+ !data/raw/000001.SZ.csv
15
+
16
+ # Python
17
+ __pycache__/
18
+ *.py[cod]
19
+ *$py.class
20
+ *.so
21
+ .Python
22
+ build/
23
+ develop-eggs/
24
+ dist/
25
+ downloads/
26
+ eggs/
27
+ .eggs/
28
+ lib/
29
+ lib64/
30
+ parts/
31
+ sdist/
32
+ var/
33
+ wheels/
34
+ *.egg-info/
35
+ .installed.cfg
36
+ *.egg
37
+ MANIFEST
38
+
39
+ # 虚拟环境
40
+ venv/
41
+ env/
42
+ ENV/
43
+ .venv
44
+
45
+ # IDE
46
+ .vscode/
47
+ .idea/
48
+ *.swp
49
+ *.swo
50
+ *~
51
+ .DS_Store
52
+
53
+ # 日志文件
54
+ logs/
55
+ *.log
56
+
57
+ # 环境变量
58
+ .env
59
+ .env.local
60
+ .env.*.local
61
+
62
+ # Flask
63
+ instance/
64
+ .webassets-cache
65
+
66
+ # 临时文件
67
+ *.tmp
68
+ *.temp
69
+ .cache/
70
+
71
+ # 操作系统
72
+ Thumbs.db
73
+ .DS_Store
74
+
75
+ # 测试覆盖率
76
+ .coverage
77
+ htmlcov/
78
+ .pytest_cache/
79
+
80
+ # Jupyter Notebook
81
+ .ipynb_checkpoints
82
+
83
+ # 其他
84
+ *.bak
85
+ *.orig
86
+
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: deltafstation
3
+ Version: 0.0.1
4
+ Summary: PyPI placeholder for the DeltaFStation name; not the full application yet.
5
+ Project-URL: Homepage, https://github.com/delta-f/deltafstation
6
+ License: MIT
7
+ Classifier: Development Status :: 2 - Pre-Alpha
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Requires-Python: >=3.10
14
+ Description-Content-Type: text/markdown
15
+
16
+ # deltafstation (PyPI placeholder)
17
+
18
+ This is a **minimal placeholder** on PyPI to reserve the project name `deltafstation`.
19
+
20
+ The full **DeltaFStation** web application lives in the [GitHub repository](https://github.com/delta-f/deltafstation); use that source until a complete distribution is published under this PyPI name.
@@ -0,0 +1,5 @@
1
+ # deltafstation (PyPI placeholder)
2
+
3
+ This is a **minimal placeholder** on PyPI to reserve the project name `deltafstation`.
4
+
5
+ The full **DeltaFStation** web application lives in the [GitHub repository](https://github.com/delta-f/deltafstation); use that source until a complete distribution is published under this PyPI name.
@@ -0,0 +1,3 @@
1
+ """deltafstation — PyPI name reservation placeholder (not the full DeltaFStation app)."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,28 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.18.0"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "deltafstation"
7
+ version = "0.0.1"
8
+ description = "PyPI placeholder for the DeltaFStation name; not the full application yet."
9
+ readme = "PYPI.md"
10
+ requires-python = ">=3.10"
11
+ license = { text = "MIT" }
12
+ classifiers = [
13
+ "Development Status :: 2 - Pre-Alpha",
14
+ "Intended Audience :: Developers",
15
+ "Programming Language :: Python :: 3",
16
+ "Programming Language :: Python :: 3.10",
17
+ "Programming Language :: Python :: 3.11",
18
+ "Programming Language :: Python :: 3.12",
19
+ ]
20
+
21
+ [project.urls]
22
+ Homepage = "https://github.com/delta-f/deltafstation"
23
+
24
+ [tool.hatch.build.targets.wheel]
25
+ packages = ["deltafstation"]
26
+
27
+ [tool.hatch.build.targets.sdist]
28
+ include = ["deltafstation", "PYPI.md", "pyproject.toml"]