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.

@@ -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,5 @@
1
+ # Example Package
2
+
3
+ This is a simple example package. You can use
4
+ [GitHub-flavored Markdown](https://guides.github.com/features/mastering-markdown/)
5
+ 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
+
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
File without changes
@@ -0,0 +1,2 @@
1
+ def add_one(number):
2
+ return number + 1
@@ -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,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/BackcastPro/__init__.py
4
+ src/BackcastPro/example.py
5
+ src/BackcastPro.egg-info/PKG-INFO
6
+ src/BackcastPro.egg-info/SOURCES.txt
7
+ src/BackcastPro.egg-info/dependency_links.txt
8
+ src/BackcastPro.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ BackcastPro