BackcastPro 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.
Potentially problematic release.
This version of BackcastPro might be problematic. Click here for more details.
- backcastpro-0.0.1/PKG-INFO +18 -0
- backcastpro-0.0.1/README.md +5 -0
- backcastpro-0.0.1/pyproject.toml +25 -0
- backcastpro-0.0.1/setup.cfg +4 -0
- backcastpro-0.0.1/src/BackcastPro/__init__.py +0 -0
- backcastpro-0.0.1/src/BackcastPro/example.py +2 -0
- backcastpro-0.0.1/src/BackcastPro.egg-info/PKG-INFO +18 -0
- backcastpro-0.0.1/src/BackcastPro.egg-info/SOURCES.txt +8 -0
- backcastpro-0.0.1/src/BackcastPro.egg-info/dependency_links.txt +1 -0
- backcastpro-0.0.1/src/BackcastPro.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: BackcastPro
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A small example package
|
|
5
|
+
Author-email: 笹澤ようすけ <yosuke.sasazawa@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://BackcastPro.github.io/BackcastPro/
|
|
7
|
+
Project-URL: Issues, https://github.com/BackcastPro/BackcastPro/issues
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Example Package
|
|
15
|
+
|
|
16
|
+
This is a simple example package. You can use
|
|
17
|
+
[GitHub-flavored Markdown](https://guides.github.com/features/mastering-markdown/)
|
|
18
|
+
to write your content.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "BackcastPro"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
authors = [
|
|
5
|
+
{ name="笹澤ようすけ", email="yosuke.sasazawa@gmail.com" },
|
|
6
|
+
]
|
|
7
|
+
description = "A small example package"
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
requires-python = ">=3.9"
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Programming Language :: Python :: 3",
|
|
12
|
+
"Operating System :: OS Independent",
|
|
13
|
+
"License :: OSI Approved :: MIT License",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
Homepage = "https://BackcastPro.github.io/BackcastPro/"
|
|
18
|
+
Issues = "https://github.com/BackcastPro/BackcastPro/issues"
|
|
19
|
+
|
|
20
|
+
[tool.setuptools]
|
|
21
|
+
include-package-data = true
|
|
22
|
+
|
|
23
|
+
[tool.setuptools.packages.find]
|
|
24
|
+
where = ["src"]
|
|
25
|
+
|
|
File without changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: BackcastPro
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A small example package
|
|
5
|
+
Author-email: 笹澤ようすけ <yosuke.sasazawa@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://BackcastPro.github.io/BackcastPro/
|
|
7
|
+
Project-URL: Issues, https://github.com/BackcastPro/BackcastPro/issues
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Example Package
|
|
15
|
+
|
|
16
|
+
This is a simple example package. You can use
|
|
17
|
+
[GitHub-flavored Markdown](https://guides.github.com/features/mastering-markdown/)
|
|
18
|
+
to write your content.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
BackcastPro
|