autolyap 0.0.0a0__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,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Manu Upadhyaya
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: autolyap
3
+ Version: 0.0.0a0
4
+ Summary: Automatic Lyapunov analysis.
5
+ Author: Manu Upadhyaya
6
+ Author-email: manu.upadhyaya.42@gmail.com
7
+ License: MIT
8
+ Project-URL: Source, https://github.com/AutoLyap/AutoLyap
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Science/Research
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
14
+ Requires-Python: >=3.9
15
+ Description-Content-Type: text/markdown
16
+ License-File: LICENSE
17
+ Requires-Dist: numpy>=1.24
18
+ Requires-Dist: matplotlib>=3.7
19
+ Requires-Dist: mosek
20
+ Dynamic: author
21
+ Dynamic: author-email
22
+ Dynamic: classifier
23
+ Dynamic: description-content-type
24
+ Dynamic: license
25
+ Dynamic: license-file
26
+ Dynamic: project-url
27
+ Dynamic: requires-dist
28
+ Dynamic: requires-python
29
+ Dynamic: summary
File without changes
File without changes
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: autolyap
3
+ Version: 0.0.0a0
4
+ Summary: Automatic Lyapunov analysis.
5
+ Author: Manu Upadhyaya
6
+ Author-email: manu.upadhyaya.42@gmail.com
7
+ License: MIT
8
+ Project-URL: Source, https://github.com/AutoLyap/AutoLyap
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Science/Research
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
14
+ Requires-Python: >=3.9
15
+ Description-Content-Type: text/markdown
16
+ License-File: LICENSE
17
+ Requires-Dist: numpy>=1.24
18
+ Requires-Dist: matplotlib>=3.7
19
+ Requires-Dist: mosek
20
+ Dynamic: author
21
+ Dynamic: author-email
22
+ Dynamic: classifier
23
+ Dynamic: description-content-type
24
+ Dynamic: license
25
+ Dynamic: license-file
26
+ Dynamic: project-url
27
+ Dynamic: requires-dist
28
+ Dynamic: requires-python
29
+ Dynamic: summary
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ autolyap/__init__.py
5
+ autolyap.egg-info/PKG-INFO
6
+ autolyap.egg-info/SOURCES.txt
7
+ autolyap.egg-info/dependency_links.txt
8
+ autolyap.egg-info/requires.txt
9
+ autolyap.egg-info/top_level.txt
@@ -0,0 +1,3 @@
1
+ numpy>=1.24
2
+ matplotlib>=3.7
3
+ mosek
@@ -0,0 +1 @@
1
+ autolyap
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,34 @@
1
+ from pathlib import Path
2
+ from setuptools import setup, find_packages
3
+
4
+ this_dir = Path(__file__).parent
5
+
6
+ setup(
7
+ name="autolyap",
8
+ version="0.0.0a0", # use an alpha tag while reserving
9
+ author="Manu Upadhyaya",
10
+ author_email="manu.upadhyaya.42@gmail.com",
11
+ description="Automatic Lyapunov analysis.",
12
+ long_description=(this_dir / "README.md").read_text(encoding="utf-8"),
13
+ long_description_content_type="text/markdown",
14
+ license="MIT",
15
+ python_requires=">=3.9",
16
+
17
+ packages=find_packages(),
18
+
19
+ install_requires=[
20
+ "numpy>=1.24",
21
+ "matplotlib>=3.7",
22
+ "mosek",
23
+ ],
24
+ classifiers=[
25
+ "Development Status :: 3 - Alpha",
26
+ "Intended Audience :: Science/Research",
27
+ "Programming Language :: Python :: 3",
28
+ "License :: OSI Approved :: MIT License",
29
+ "Topic :: Scientific/Engineering :: Mathematics",
30
+ ],
31
+ project_urls={
32
+ "Source": "https://github.com/AutoLyap/AutoLyap",
33
+ },
34
+ )