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.
@@ -1,6 +1,6 @@
1
1
  BSD 3-Clause License
2
2
 
3
- Copyright (c) 2022-2025, rd2
3
+ Copyright (c) 2022-2026, rd2
4
4
 
5
5
  Redistribution and use in source and binary forms, with or without
6
6
  modification, are permitted provided that the following conditions are met:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: osut
3
- Version: 0.6.0a1
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 OSut gem for the OpenStudio SDK.
22
+ Python implementation of the _OSut_ Ruby gem for the OpenStudio SDK.
24
23
 
25
- (original Ruby implementation/documentation: https://github.com/rd2/osut)
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
- _Disclaimer: alpha release_
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.6.0a1"
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 = [