Different-pack 1.0.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.
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: Different_pack
3
+ Version: 1.0.0
4
+ Summary: This package made for solve differential equals
5
+ Author: Mikhanik
6
+ Author-email: nikolayev_m@vk.com
7
+ Keywords: equals
8
+ Classifier: Programming Language :: Python :: 3.11
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.11
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: requests>=2.25.1
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: classifier
17
+ Dynamic: description-content-type
18
+ Dynamic: keywords
19
+ Dynamic: requires-dist
20
+ Dynamic: requires-python
21
+ Dynamic: summary
@@ -0,0 +1,10 @@
1
+ README.md
2
+ setup.cfg
3
+ setup.py
4
+ Different_pack.egg-info/PKG-INFO
5
+ Different_pack.egg-info/SOURCES.txt
6
+ Different_pack.egg-info/dependency_links.txt
7
+ Different_pack.egg-info/requires.txt
8
+ Different_pack.egg-info/top_level.txt
9
+ Diffur_Pack/__init__.py
10
+ Diffur_Pack/core.py
@@ -0,0 +1 @@
1
+ requests>=2.25.1
@@ -0,0 +1 @@
1
+ Diffur_Pack
@@ -0,0 +1,3 @@
1
+ from .core import rk4
2
+ __version__ = "1.0.0"
3
+ __all__ = ["rk4"]
@@ -0,0 +1,2 @@
1
+ def rk4():
2
+ print('rk4')
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: Different_pack
3
+ Version: 1.0.0
4
+ Summary: This package made for solve differential equals
5
+ Author: Mikhanik
6
+ Author-email: nikolayev_m@vk.com
7
+ Keywords: equals
8
+ Classifier: Programming Language :: Python :: 3.11
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.11
12
+ Description-Content-Type: text/markdown
13
+ Requires-Dist: requests>=2.25.1
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: classifier
17
+ Dynamic: description-content-type
18
+ Dynamic: keywords
19
+ Dynamic: requires-dist
20
+ Dynamic: requires-python
21
+ Dynamic: summary
File without changes
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,24 @@
1
+ from setuptools import setup, find_packages
2
+ def readme():
3
+ with open('README.md', 'r') as f:
4
+ return f.read()
5
+
6
+
7
+ setup(
8
+ name='Different_pack',
9
+ version='1.0.0',
10
+ author='Mikhanik',
11
+ author_email='nikolayev_m@vk.com',
12
+ description='This package made for solve differential equals',
13
+ long_description=readme(),
14
+ long_description_content_type='text/markdown',
15
+ packages=find_packages(),
16
+ install_requires=['requests>=2.25.1'],
17
+ classifiers=[
18
+ 'Programming Language :: Python :: 3.11',
19
+ 'License :: OSI Approved :: MIT License',
20
+ 'Operating System :: OS Independent'
21
+ ],
22
+ keywords='equals',
23
+ python_requires='>=3.11'
24
+ )