jackpots 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,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: jackpots
3
+ Version: 0.0.1
4
+ Author-email: Wenjie Du <wdu@time-series.ai>
5
+ Project-URL: Source, https://github.com/WenjieDu/PyPOTS
6
+ Project-URL: Homepage, https://pypots.com
7
+ Keywords: data science,neural networks,machine learning,deep learning,artificial intelligence,time-series analysis,time series
8
+ Classifier: Development Status :: 5 - Production/Stable
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Intended Audience :: Education
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: Intended Audience :: Healthcare Industry
13
+ Classifier: License :: OSI Approved :: Apache Software License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
17
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
18
+ Requires-Python: >=3.8
19
+ Description-Content-Type: text/markdown
20
+ Requires-Dist: pypots>=1.3
@@ -0,0 +1,6 @@
1
+ """
2
+
3
+ """
4
+
5
+ # Created by Wenjie Du <wdu@time-series.ai>
6
+
@@ -0,0 +1,21 @@
1
+ """
2
+
3
+ """
4
+
5
+ # Created by Wenjie Du <wdu@time-series.ai>
6
+
7
+ # PEP0440 compatible formatted version, see:
8
+ # https://www.python.org/dev/peps/pep-0440/
9
+ # Generic release markers:
10
+ # X.Y
11
+ # X.Y.Z # For bugfix releases
12
+ #
13
+ # Admissible pre-release markers:
14
+ # X.YaN # Alpha release
15
+ # X.YbN # Beta release
16
+ # X.YrcN # Release Candidate
17
+ # X.Y # Final release
18
+ #
19
+ # Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
20
+ # 'X.Y.dev0' is the canonical version of 'X.Y.dev'
21
+ __version__ = "0.0.1"
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: jackpots
3
+ Version: 0.0.1
4
+ Author-email: Wenjie Du <wdu@time-series.ai>
5
+ Project-URL: Source, https://github.com/WenjieDu/PyPOTS
6
+ Project-URL: Homepage, https://pypots.com
7
+ Keywords: data science,neural networks,machine learning,deep learning,artificial intelligence,time-series analysis,time series
8
+ Classifier: Development Status :: 5 - Production/Stable
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Intended Audience :: Education
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: Intended Audience :: Healthcare Industry
13
+ Classifier: License :: OSI Approved :: Apache Software License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
17
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
18
+ Requires-Python: >=3.8
19
+ Description-Content-Type: text/markdown
20
+ Requires-Dist: pypots>=1.3
@@ -0,0 +1,8 @@
1
+ pyproject.toml
2
+ jackpots/__init__.py
3
+ jackpots/version.py
4
+ jackpots.egg-info/PKG-INFO
5
+ jackpots.egg-info/SOURCES.txt
6
+ jackpots.egg-info/dependency_links.txt
7
+ jackpots.egg-info/requires.txt
8
+ jackpots.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ pypots>=1.3
@@ -0,0 +1,2 @@
1
+ dist
2
+ jackpots
@@ -0,0 +1,75 @@
1
+ [build-system]
2
+ requires = ["setuptools>=71"]
3
+
4
+ [project]
5
+ name = "jackpots"
6
+ authors = [{ name = "Wenjie Du", email = "wdu@time-series.ai" }]
7
+ dependencies = [
8
+ "pypots>=1.3",
9
+ ]
10
+ dynamic = ["version", "readme"]
11
+ license = { file = "LICENSE" }
12
+ requires-python = ">=3.8"
13
+ classifiers = [
14
+ "Development Status :: 5 - Production/Stable",
15
+ "Intended Audience :: Developers",
16
+ "Intended Audience :: Education",
17
+ "Intended Audience :: Science/Research",
18
+ "Intended Audience :: Healthcare Industry",
19
+ "License :: OSI Approved :: Apache Software License",
20
+ "Operating System :: OS Independent",
21
+ "Programming Language :: Python :: 3",
22
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
23
+ "Topic :: Software Development :: Libraries :: Application Frameworks",
24
+ ]
25
+ keywords = [
26
+ "data science",
27
+ "neural networks",
28
+ "machine learning",
29
+ "deep learning",
30
+ "artificial intelligence",
31
+ "time-series analysis",
32
+ "time series",
33
+ ]
34
+
35
+
36
+ [project.urls]
37
+ Source = "https://github.com/WenjieDu/PyPOTS"
38
+ Homepage = "https://pypots.com"
39
+
40
+ [tool.setuptools.packages.find]
41
+ exclude = [
42
+ "*template",
43
+ "*README.md",
44
+ "docs*",
45
+ "test*",
46
+ "requirements*",
47
+ ]
48
+
49
+ [tool.setuptools.dynamic]
50
+ version = { attr = "jackpots.version.__version__" }
51
+ readme = { file = "README.md", content-type = "text/markdown" }
52
+
53
+ [tool.black]
54
+ line-length = 120
55
+
56
+ [tool.flake8]
57
+ # People may argue that coding style is personal. This may be true if the project is personal and one works like a
58
+ # hermit, but to PyPOTS and its community, the answer is NO.
59
+ # We use Black and Flake8 to lint code style and keep the style consistent across all commits and pull requests.
60
+ # Black only reformats the code, and Flake8 is necessary for checking for some other issues not covered by Black.
61
+
62
+ # The Black line length is default as 88, while the default of Flake8 is 79. However, considering our monitors are
63
+ # much more advanced nowadays, I extend the maximum line length to 120, like other project e.g. transformers. People
64
+ # who prefer the default setting can keep using 88 or 79 while coding. Please ensure your code lines not exceeding 120.
65
+ max-line-length = 120
66
+ # why ignore E203? Refer to https://github.com/PyCQA/pycodestyle/issues/373
67
+ # why ignore E231? Bad trailing comma, conflict with Black
68
+ extend-ignore = """
69
+ E203,
70
+ E231,
71
+ """
72
+ # ignore some errors that are not important in template files
73
+ exclude = [
74
+ "*/template"
75
+ ]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+