vibetrading 0.0.2__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,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Ning Ren
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.4
2
+ Name: vibetrading
3
+ Version: 0.0.2
4
+ Summary: A simple Python library
5
+ Author-email: Ning Ren <renning22@gmail.com>
6
+ Maintainer-email: Ning Ren <renning22@gmail.com>
7
+ Project-URL: Homepage, https://github.com/renning22/vb
8
+ Project-URL: Bug Reports, https://github.com/renning22/vb/issues
9
+ Project-URL: Funding, https://github.com/renning22/vb
10
+ Project-URL: Say Thanks!, https://github.com/renning22/vb
11
+ Project-URL: Source, https://github.com/renning22/vb
12
+ Keywords: setuptools,development
13
+ Classifier: Development Status :: 3 - Alpha
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Topic :: Software Development :: Build Tools
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.7
19
+ Classifier: Programming Language :: Python :: 3.8
20
+ Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3 :: Only
24
+ Requires-Python: >=3.7
25
+ Description-Content-Type: text/markdown
26
+ License-File: LICENSE
27
+ Requires-Dist: ray[default]
28
+ Provides-Extra: dev
29
+ Requires-Dist: check-manifest; extra == "dev"
30
+ Provides-Extra: test
31
+ Requires-Dist: coverage; extra == "test"
32
+ Dynamic: license-file
33
+
34
+ # vb
35
+ VibeTrading python library
@@ -0,0 +1,2 @@
1
+ # vb
2
+ VibeTrading python library
@@ -0,0 +1,154 @@
1
+ [project]
2
+ # This is the name of your project. The first time you publish this
3
+ # package, this name will be registered for you. It will determine how
4
+ # users can install this project, e.g.:
5
+ #
6
+ # $ pip install vibetrading
7
+ #
8
+ # And where it will live on PyPI: https://pypi.org/project/sampleproject/
9
+ #
10
+ # There are some restrictions on what makes a valid project name
11
+ # specification here:
12
+ # https://packaging.python.org/specifications/core-metadata/#name
13
+ name = "vibetrading" # Required
14
+
15
+ # Versions should comply with PEP 440:
16
+ # https://www.python.org/dev/peps/pep-0440/
17
+ #
18
+ # For a discussion on single-sourcing the version, see
19
+ # https://packaging.python.org/guides/single-sourcing-package-version/
20
+ version = "0.0.2" # Required
21
+
22
+ # This is a one-line description or tagline of what your project does. This
23
+ # corresponds to the "Summary" metadata field:
24
+ # https://packaging.python.org/specifications/core-metadata/#summary
25
+ description = "A simple Python library" # Optional
26
+
27
+ # This is an optional longer description of your project that represents
28
+ # the body of text which users will see when they visit PyPI.
29
+ #
30
+ # Often, this is the same as your README, so you can just read it in from
31
+ # that file directly (as we have already done above)
32
+ #
33
+ # This field corresponds to the "Description" metadata field:
34
+ # https://packaging.python.org/specifications/core-metadata/#description-optional
35
+ readme = "README.md" # Optional
36
+
37
+ # Specify which Python versions you support. In contrast to the
38
+ # 'Programming Language' classifiers above, 'pip install' will check this
39
+ # and refuse to install the project if the version does not match. See
40
+ # https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
41
+ requires-python = ">=3.7"
42
+
43
+ # This is either text indicating the license for the distribution, or a file
44
+ # that contains the license
45
+ # https://packaging.python.org/en/latest/specifications/core-metadata/#license
46
+ license = {file = "LICENSE.txt"}
47
+
48
+ # This field adds keywords for your project which will appear on the
49
+ # project page. What does your project relate to?
50
+ #
51
+ # Note that this is a list of additional keywords, separated
52
+ # by commas, to be used to assist searching for the distribution in a
53
+ # larger catalog.
54
+ keywords = ["setuptools", "development"] # Optional
55
+
56
+ # This should be your name or the name of the organization who originally
57
+ # authored the project, and a valid email address corresponding to the name
58
+ # listed.
59
+ authors = [
60
+ {name = "Ning Ren", email = "renning22@gmail.com" } # Optional
61
+ ]
62
+
63
+ # This should be your name or the names of the organization who currently
64
+ # maintains the project, and a valid email address corresponding to the name
65
+ # listed.
66
+ maintainers = [
67
+ {name = "Ning Ren", email = "renning22@gmail.com" } # Optional
68
+ ]
69
+
70
+ # Classifiers help users find your project by categorizing it.
71
+ #
72
+ # For a list of valid classifiers, see https://pypi.org/classifiers/
73
+ classifiers = [ # Optional
74
+ # How mature is this project? Common values are
75
+ # 3 - Alpha
76
+ # 4 - Beta
77
+ # 5 - Production/Stable
78
+ "Development Status :: 3 - Alpha",
79
+
80
+ # Indicate who your project is intended for
81
+ "Intended Audience :: Developers",
82
+ "Topic :: Software Development :: Build Tools",
83
+
84
+ # Pick your license as you wish
85
+ "License :: OSI Approved :: MIT License",
86
+
87
+ # Specify the Python versions you support here. In particular, ensure
88
+ # that you indicate you support Python 3. These classifiers are *not*
89
+ # checked by "pip install". See instead "python_requires" below.
90
+ "Programming Language :: Python :: 3",
91
+ "Programming Language :: Python :: 3.7",
92
+ "Programming Language :: Python :: 3.8",
93
+ "Programming Language :: Python :: 3.9",
94
+ "Programming Language :: Python :: 3.10",
95
+ "Programming Language :: Python :: 3.11",
96
+ "Programming Language :: Python :: 3 :: Only",
97
+ ]
98
+
99
+ # This field lists other packages that your project depends on to run.
100
+ # Any package you put here will be installed by pip when your project is
101
+ # installed, so they must be valid existing projects.
102
+ #
103
+ # For an analysis of this field vs pip's requirements files see:
104
+ # https://packaging.python.org/discussions/install-requires-vs-requirements/
105
+ dependencies = [ # Optional
106
+ "ray[default]",
107
+ ]
108
+
109
+ # List additional groups of dependencies here (e.g. development
110
+ # dependencies). Users will be able to install these using the "extras"
111
+ # syntax, for example:
112
+ #
113
+ # $ pip install vibetrading[dev]
114
+ #
115
+ # Similar to `dependencies` above, these must be valid existing
116
+ # projects.
117
+ [project.optional-dependencies] # Optional
118
+ dev = ["check-manifest"]
119
+ test = ["coverage"]
120
+
121
+ # List URLs that are relevant to your project
122
+ #
123
+ # This field corresponds to the "Project-URL" and "Home-Page" metadata fields:
124
+ # https://packaging.python.org/specifications/core-metadata/#project-url-multiple-use
125
+ # https://packaging.python.org/specifications/core-metadata/#home-page-optional
126
+ #
127
+ # Examples listed include a pattern for specifying where the package tracks
128
+ # issues, where the source is hosted, where to say thanks to the package
129
+ # maintainers, and where to support the project financially. The key is
130
+ # what's used to render the link text on PyPI.
131
+ [project.urls] # Optional
132
+ "Homepage" = "https://github.com/renning22/vb"
133
+ "Bug Reports" = "https://github.com/renning22/vb/issues"
134
+ "Funding" = "https://github.com/renning22/vb"
135
+ "Say Thanks!" = "https://github.com/renning22/vb"
136
+ "Source" = "https://github.com/renning22/vb"
137
+
138
+ # The following would provide a command line executable called `sample`
139
+ # which executes the function `main` from this package when invoked.
140
+ [project.scripts] # Optional
141
+ vibetrading = "vibetrading:main"
142
+
143
+ # This is configuration specific to the `setuptools` build backend.
144
+ # If you are using a different build backend, you will need to change this.
145
+ [tool.setuptools]
146
+ # If there are data files included in your packages that need to be
147
+ # installed, specify them here.
148
+ package-data = {"sample" = ["*.dat"]}
149
+
150
+ [build-system]
151
+ # These are the assumed default build requirements from pip:
152
+ # https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
153
+ requires = ["setuptools>=67.0.0", "wheel"]
154
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ print("Feel the vibe")
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.4
2
+ Name: vibetrading
3
+ Version: 0.0.2
4
+ Summary: A simple Python library
5
+ Author-email: Ning Ren <renning22@gmail.com>
6
+ Maintainer-email: Ning Ren <renning22@gmail.com>
7
+ Project-URL: Homepage, https://github.com/renning22/vb
8
+ Project-URL: Bug Reports, https://github.com/renning22/vb/issues
9
+ Project-URL: Funding, https://github.com/renning22/vb
10
+ Project-URL: Say Thanks!, https://github.com/renning22/vb
11
+ Project-URL: Source, https://github.com/renning22/vb
12
+ Keywords: setuptools,development
13
+ Classifier: Development Status :: 3 - Alpha
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Topic :: Software Development :: Build Tools
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.7
19
+ Classifier: Programming Language :: Python :: 3.8
20
+ Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3 :: Only
24
+ Requires-Python: >=3.7
25
+ Description-Content-Type: text/markdown
26
+ License-File: LICENSE
27
+ Requires-Dist: ray[default]
28
+ Provides-Extra: dev
29
+ Requires-Dist: check-manifest; extra == "dev"
30
+ Provides-Extra: test
31
+ Requires-Dist: coverage; extra == "test"
32
+ Dynamic: license-file
33
+
34
+ # vb
35
+ VibeTrading python library
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/vibetrading/__init__.py
5
+ src/vibetrading.egg-info/PKG-INFO
6
+ src/vibetrading.egg-info/SOURCES.txt
7
+ src/vibetrading.egg-info/dependency_links.txt
8
+ src/vibetrading.egg-info/entry_points.txt
9
+ src/vibetrading.egg-info/requires.txt
10
+ src/vibetrading.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ vibetrading = vibetrading:main
@@ -0,0 +1,7 @@
1
+ ray[default]
2
+
3
+ [dev]
4
+ check-manifest
5
+
6
+ [test]
7
+ coverage
@@ -0,0 +1 @@
1
+ vibetrading