morpc 0.2.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,2 @@
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
@@ -0,0 +1,73 @@
1
+ # This workflow will upload a Python Package to PyPI when a release is created
2
+ # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
3
+
4
+ # This workflow uses actions that are not certified by GitHub.
5
+ # They are provided by a third-party and are governed by
6
+ # separate terms of service, privacy policy, and support
7
+ # documentation.
8
+
9
+ name: Upload Python Package
10
+
11
+ on:
12
+ release:
13
+ types: [published]
14
+
15
+ permissions:
16
+ contents: read
17
+
18
+ jobs:
19
+ release-build:
20
+ runs-on: windows-latest
21
+
22
+ steps:
23
+ - uses: actions/checkout@v4
24
+ with:
25
+ persist-credentials: false
26
+ - name: Set up Python
27
+ uses: actions/setup-python@v5
28
+ with:
29
+ python-version: "3.x"
30
+ - name: Install pypa/build
31
+ run: >-
32
+ python3 -m
33
+ pip install
34
+ build
35
+ --user
36
+ - name: Build a binary wheel and a source tarball
37
+ run: python3 -m build
38
+ - name: Store the distribution packages
39
+ uses: actions/upload-artifact@v4
40
+ with:
41
+ name: python-package-distributions
42
+ path: dist/
43
+
44
+ pypi-publish:
45
+ runs-on: ubuntu-latest
46
+ needs:
47
+ - release-build
48
+ permissions:
49
+ # IMPORTANT: this permission is mandatory for trusted publishing
50
+ id-token: write
51
+
52
+ # Dedicated environments with protections for publishing are strongly recommended.
53
+ # For more information, see: https://docs.github.com/en/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules
54
+ environment:
55
+ name: pypi
56
+ # OPTIONAL: uncomment and update to include your PyPI project URL in the deployment status:
57
+ url: https://pypi.org/p/morpc
58
+ #
59
+ # ALTERNATIVE: if your GitHub Release name is the PyPI project version string
60
+ # ALTERNATIVE: exactly, uncomment the following line instead:
61
+ # url: https://pypi.org/project/morpc/${{ github.event.release.name }}
62
+
63
+ steps:
64
+ - name: Retrieve release distributions
65
+ uses: actions/download-artifact@v4
66
+ with:
67
+ name: python-package-distributions
68
+ path: dist/
69
+
70
+ - name: Publish release distributions to PyPI
71
+ uses: pypa/gh-action-pypi-publish@release/v1
72
+ with:
73
+ packages-dir: dist/
morpc-0.2.0/.gitignore ADDED
@@ -0,0 +1,5 @@
1
+ *.pyc
2
+ __pycache__/
3
+ *.pkl
4
+ dist/
5
+ build/
morpc-0.2.0/PKG-INFO ADDED
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: morpc
3
+ Version: 0.2.0
4
+ Summary: Data managment tools used by MORPC
5
+ Author-email: MORPC data team <dataandmaps@morpc.org>
6
+ License-Expression: MIT
7
+ Classifier: Development Status :: 1 - Planning
8
+ Classifier: Intended Audience :: Developers
9
+ Requires-Python: >=3.10
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: json
12
+ Requires-Dist: requests
13
+ Requires-Dist: pandas
14
+ Requires-Dist: geopandas
15
+ Requires-Dist: os
16
+ Requires-Dist: math
17
+ Requires-Dist: random
18
+ Requires-Dist: hashlib
19
+ Requires-Dist: frictionless
20
+ Requires-Dist: shapely
21
+ Requires-Dist: re
22
+ Requires-Dist: shutil
23
+ Requires-Dist: IPython
24
+ Requires-Dist: xlsxwriter
25
+
26
+ # MORPC Python package
27
+
28
+ Work in progress
morpc-0.2.0/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # MORPC Python package
2
+
3
+ Work in progress