osut 0.6.0a1__tar.gz → 0.8.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.
- {osut-0.6.0a1 → osut-0.8.1}/LICENSE +1 -1
- {osut-0.6.0a1 → osut-0.8.1}/PKG-INFO +28 -5
- osut-0.8.1/README.md +30 -0
- {osut-0.6.0a1 → osut-0.8.1}/pyproject.toml +2 -5
- osut-0.8.1/src/osut/osut.py +9038 -0
- {osut-0.6.0a1 → osut-0.8.1}/src/osut.egg-info/PKG-INFO +28 -5
- osut-0.8.1/src/osut.egg-info/requires.txt +1 -0
- osut-0.8.1/tests/test_osut.py +6026 -0
- osut-0.6.0a1/README.md +0 -6
- osut-0.6.0a1/src/osut/osut.py +0 -2763
- osut-0.6.0a1/src/osut.egg-info/requires.txt +0 -2
- osut-0.6.0a1/tests/test_osut.py +0 -2568
- {osut-0.6.0a1 → osut-0.8.1}/setup.cfg +0 -0
- {osut-0.6.0a1 → osut-0.8.1}/src/osut/__init__.py +0 -0
- {osut-0.6.0a1 → osut-0.8.1}/src/osut.egg-info/SOURCES.txt +0 -0
- {osut-0.6.0a1 → osut-0.8.1}/src/osut.egg-info/dependency_links.txt +0 -0
- {osut-0.6.0a1 → osut-0.8.1}/src/osut.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: osut
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8.1
|
|
4
4
|
Summary: OpenStudio SDK utilities for Python
|
|
5
5
|
Author-email: Denis Bourgeois <denis@rd2.ca>
|
|
6
6
|
Maintainer-email: Denis Bourgeois <denis@rd2.ca>
|
|
@@ -16,12 +16,35 @@ Requires-Python: >=3.2
|
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE
|
|
18
18
|
Requires-Dist: oslg
|
|
19
|
-
Requires-Dist: openstudio>=3.6.1
|
|
20
19
|
Dynamic: license-file
|
|
21
20
|
|
|
22
21
|
# pyOSut
|
|
23
|
-
Python implementation of the
|
|
22
|
+
Python implementation of the _OSut_ Ruby gem for the OpenStudio SDK.
|
|
24
23
|
|
|
25
|
-
|
|
24
|
+
- PyPi [package](https://pypi.org/project/osut/)
|
|
25
|
+
- Ruby [gem](https://rubygems.org/gems/osut)
|
|
26
|
+
- Ruby GitHub [repository](https://github.com/rd2/osut)
|
|
26
27
|
|
|
27
|
-
|
|
28
|
+
----
|
|
29
|
+
|
|
30
|
+
_OSut_ interacts with _OpenStudio_:
|
|
31
|
+
|
|
32
|
+
`pip install openstudio`
|
|
33
|
+
|
|
34
|
+
----
|
|
35
|
+
|
|
36
|
+
To download the _OSut_ Python package:
|
|
37
|
+
|
|
38
|
+
`pip install --upgrade osut`
|
|
39
|
+
|
|
40
|
+
----
|
|
41
|
+
|
|
42
|
+
To import the _OSut_ module in a Python project:
|
|
43
|
+
|
|
44
|
+
`from osut import osut`
|
|
45
|
+
|
|
46
|
+
____
|
|
47
|
+
|
|
48
|
+
To run the _OSut_ unit tests on a `git clone` of the repo:
|
|
49
|
+
|
|
50
|
+
`python -m unittest`
|
osut-0.8.1/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# pyOSut
|
|
2
|
+
Python implementation of the _OSut_ Ruby gem for the OpenStudio SDK.
|
|
3
|
+
|
|
4
|
+
- PyPi [package](https://pypi.org/project/osut/)
|
|
5
|
+
- Ruby [gem](https://rubygems.org/gems/osut)
|
|
6
|
+
- Ruby GitHub [repository](https://github.com/rd2/osut)
|
|
7
|
+
|
|
8
|
+
----
|
|
9
|
+
|
|
10
|
+
_OSut_ interacts with _OpenStudio_:
|
|
11
|
+
|
|
12
|
+
`pip install openstudio`
|
|
13
|
+
|
|
14
|
+
----
|
|
15
|
+
|
|
16
|
+
To download the _OSut_ Python package:
|
|
17
|
+
|
|
18
|
+
`pip install --upgrade osut`
|
|
19
|
+
|
|
20
|
+
----
|
|
21
|
+
|
|
22
|
+
To import the _OSut_ module in a Python project:
|
|
23
|
+
|
|
24
|
+
`from osut import osut`
|
|
25
|
+
|
|
26
|
+
____
|
|
27
|
+
|
|
28
|
+
To run the _OSut_ unit tests on a `git clone` of the repo:
|
|
29
|
+
|
|
30
|
+
`python -m unittest`
|
|
@@ -1,15 +1,12 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "osut"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.8.1"
|
|
4
4
|
description = "OpenStudio SDK utilities for Python"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.2"
|
|
7
7
|
authors = [ {name = "Denis Bourgeois", email = "denis@rd2.ca"} ]
|
|
8
8
|
maintainers = [ {name = "Denis Bourgeois", email = "denis@rd2.ca"} ]
|
|
9
|
-
dependencies = [
|
|
10
|
-
"oslg",
|
|
11
|
-
"openstudio>=3.6.1",
|
|
12
|
-
]
|
|
9
|
+
dependencies = ["oslg"]
|
|
13
10
|
license = "BSD-3-Clause"
|
|
14
11
|
license-files = ["LICENSE"]
|
|
15
12
|
classifiers = [
|