NumOpt 0.0.1__tar.gz → 0.0.2__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.
@@ -1,3 +1,3 @@
1
1
  from NumOpt.opti import *
2
2
 
3
- __version__ = "0.0.1"
3
+ __version__ = "0.0.2"
@@ -0,0 +1,48 @@
1
+ Metadata-Version: 2.4
2
+ Name: NumOpt
3
+ Version: 0.0.2
4
+ Summary: pti is a Python package that helps you design and optimize engineered systems.
5
+ Home-page: https://github.com/Zcaic/NumOpt.git
6
+ Author: Zcaic
7
+ License: MIT License
8
+
9
+ Copyright (c) 2019-2023 Peter Sharpe
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions:
17
+
18
+ The above copyright notice and this permission notice shall be included in all
19
+ copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ SOFTWARE.
28
+ Project-URL: homepage, https://github.com/Zcaic/NumOpt.git
29
+ Keywords: optimization,automatic,differentiation
30
+ Classifier: Development Status :: 5 - Production/Stable
31
+ Classifier: Intended Audience :: Science/Research
32
+ Classifier: Topic :: Scientific/Engineering :: Physics
33
+ Classifier: License :: OSI Approved :: MIT License
34
+ Classifier: Programming Language :: Python :: 3
35
+ Requires-Python: >=3.9
36
+ Description-Content-Type: text/markdown
37
+ License-File: LICENSE.txt
38
+ Requires-Dist: aerosandbox>=4.2.8
39
+ Requires-Dist: termcolor>=3.1.0
40
+ Dynamic: home-page
41
+ Dynamic: license-file
42
+ Dynamic: requires-python
43
+
44
+ **NumOpt is a Numerical Optimization Tool Python package that helps you design and optimize engineered systems.**
45
+
46
+ ```
47
+ pip install NumOpt
48
+ ```
@@ -1,5 +1,6 @@
1
1
  LICENSE.txt
2
2
  README.md
3
+ pyproject.toml
3
4
  setup.py
4
5
  NumOpt/__init__.py
5
6
  NumOpt/opti.py
numopt-0.0.2/PKG-INFO ADDED
@@ -0,0 +1,48 @@
1
+ Metadata-Version: 2.4
2
+ Name: NumOpt
3
+ Version: 0.0.2
4
+ Summary: pti is a Python package that helps you design and optimize engineered systems.
5
+ Home-page: https://github.com/Zcaic/NumOpt.git
6
+ Author: Zcaic
7
+ License: MIT License
8
+
9
+ Copyright (c) 2019-2023 Peter Sharpe
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions:
17
+
18
+ The above copyright notice and this permission notice shall be included in all
19
+ copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ SOFTWARE.
28
+ Project-URL: homepage, https://github.com/Zcaic/NumOpt.git
29
+ Keywords: optimization,automatic,differentiation
30
+ Classifier: Development Status :: 5 - Production/Stable
31
+ Classifier: Intended Audience :: Science/Research
32
+ Classifier: Topic :: Scientific/Engineering :: Physics
33
+ Classifier: License :: OSI Approved :: MIT License
34
+ Classifier: Programming Language :: Python :: 3
35
+ Requires-Python: >=3.9
36
+ Description-Content-Type: text/markdown
37
+ License-File: LICENSE.txt
38
+ Requires-Dist: aerosandbox>=4.2.8
39
+ Requires-Dist: termcolor>=3.1.0
40
+ Dynamic: home-page
41
+ Dynamic: license-file
42
+ Dynamic: requires-python
43
+
44
+ **NumOpt is a Numerical Optimization Tool Python package that helps you design and optimize engineered systems.**
45
+
46
+ ```
47
+ pip install NumOpt
48
+ ```
@@ -0,0 +1,32 @@
1
+ [project]
2
+ name = "NumOpt"
3
+ description = "pti is a Python package that helps you design and optimize engineered systems."
4
+ authors = [{ name = "Zcaic"}]
5
+ readme = "README.md"
6
+ license = {file="LICENSE.txt"}
7
+ classifiers = [
8
+ 'Development Status :: 5 - Production/Stable',
9
+ 'Intended Audience :: Science/Research',
10
+ 'Topic :: Scientific/Engineering :: Physics',
11
+ 'License :: OSI Approved :: MIT License',
12
+ 'Programming Language :: Python :: 3',
13
+ ]
14
+ keywords = ["optimization", "automatic", "differentiation"]
15
+ dynamic = ["version"]
16
+ urls = { homepage = "https://github.com/Zcaic/NumOpt.git" }
17
+ requires-python = ">= 3.9"
18
+ dependencies = [
19
+ 'aerosandbox >= 4.2.8',
20
+ "termcolor >= 3.1.0"
21
+ ]
22
+
23
+ [build-system]
24
+ requires = ["setuptools>=77"]
25
+ build-backend = "setuptools.build_meta"
26
+
27
+ [tool.setuptools.dynamic]
28
+ version = { attr = "NumOpt.__init__.__version__" }
29
+
30
+ [tool.setuptools.packages.find]
31
+ where = ["."]
32
+ include = ["NumOpt*"]
@@ -1,31 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: NumOpt
3
- Version: 0.0.1
4
- Summary: Opti is a Python package that helps you design and optimize engineered systems.
5
- Home-page: https://github.com/Zcaic/NumOpt.git
6
- Author: Zcaic
7
- Keywords: optimization automatic differentiation
8
- Classifier: Development Status :: 5 - Production/Stable
9
- Classifier: Intended Audience :: Science/Research
10
- Classifier: Topic :: Scientific/Engineering :: Physics
11
- Classifier: License :: OSI Approved :: MIT License
12
- Classifier: Programming Language :: Python :: 3
13
- Requires-Python: >=3.9
14
- License-File: LICENSE.txt
15
- Requires-Dist: aerosandbox>=4.2.8
16
- Requires-Dist: termcolor>=3.1.0
17
- Dynamic: author
18
- Dynamic: classifier
19
- Dynamic: description
20
- Dynamic: home-page
21
- Dynamic: keywords
22
- Dynamic: license-file
23
- Dynamic: requires-dist
24
- Dynamic: requires-python
25
- Dynamic: summary
26
-
27
- **NumOpt is a Numerical Optimization Tool Python package that helps you design and optimize engineered systems.**
28
-
29
- ```
30
- pip install NumOpt
31
- ```
numopt-0.0.1/PKG-INFO DELETED
@@ -1,31 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: NumOpt
3
- Version: 0.0.1
4
- Summary: Opti is a Python package that helps you design and optimize engineered systems.
5
- Home-page: https://github.com/Zcaic/NumOpt.git
6
- Author: Zcaic
7
- Keywords: optimization automatic differentiation
8
- Classifier: Development Status :: 5 - Production/Stable
9
- Classifier: Intended Audience :: Science/Research
10
- Classifier: Topic :: Scientific/Engineering :: Physics
11
- Classifier: License :: OSI Approved :: MIT License
12
- Classifier: Programming Language :: Python :: 3
13
- Requires-Python: >=3.9
14
- License-File: LICENSE.txt
15
- Requires-Dist: aerosandbox>=4.2.8
16
- Requires-Dist: termcolor>=3.1.0
17
- Dynamic: author
18
- Dynamic: classifier
19
- Dynamic: description
20
- Dynamic: home-page
21
- Dynamic: keywords
22
- Dynamic: license-file
23
- Dynamic: requires-dist
24
- Dynamic: requires-python
25
- Dynamic: summary
26
-
27
- **NumOpt is a Numerical Optimization Tool Python package that helps you design and optimize engineered systems.**
28
-
29
- ```
30
- pip install NumOpt
31
- ```
File without changes
File without changes
File without changes
File without changes
File without changes