mirrapy 0.1.0__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.
- mirrapy-0.1.0/PKG-INFO +12 -0
- mirrapy-0.1.0/pyproject.toml +22 -0
- mirrapy-0.1.0/setup.cfg +4 -0
- mirrapy-0.1.0/src/MirraPy/base.py +0 -0
- mirrapy-0.1.0/src/MirraPy/data/live_data.py +0 -0
- mirrapy-0.1.0/src/MirraPy/data/user_data.py +0 -0
- mirrapy-0.1.0/src/MirraPy/mirattiv.py +0 -0
- mirrapy-0.1.0/src/mirrapy.egg-info/PKG-INFO +12 -0
- mirrapy-0.1.0/src/mirrapy.egg-info/SOURCES.txt +9 -0
- mirrapy-0.1.0/src/mirrapy.egg-info/dependency_links.txt +1 -0
- mirrapy-0.1.0/src/mirrapy.egg-info/top_level.txt +1 -0
mirrapy-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mirrapy
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: MirraPyライブラリの説明
|
|
5
|
+
Author-email: X-Developer800 <shanriyonggou@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/X-Developer800/MirraPy
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "mirrapy" # PyPI上の公開名(小文字・ハイフン推奨)
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "MirraPyライブラリの説明"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "X-Developer800", email = "shanriyonggou@gmail.com" }
|
|
13
|
+
]
|
|
14
|
+
license = { text = "MIT" }
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://github.com/X-Developer800/MirraPy"
|
mirrapy-0.1.0/setup.cfg
ADDED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mirrapy
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: MirraPyライブラリの説明
|
|
5
|
+
Author-email: X-Developer800 <shanriyonggou@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/X-Developer800/MirraPy
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
pyproject.toml
|
|
2
|
+
src/MirraPy/base.py
|
|
3
|
+
src/MirraPy/mirattiv.py
|
|
4
|
+
src/MirraPy/data/live_data.py
|
|
5
|
+
src/MirraPy/data/user_data.py
|
|
6
|
+
src/mirrapy.egg-info/PKG-INFO
|
|
7
|
+
src/mirrapy.egg-info/SOURCES.txt
|
|
8
|
+
src/mirrapy.egg-info/dependency_links.txt
|
|
9
|
+
src/mirrapy.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
MirraPy
|