gtm-linear 0.0.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.
@@ -0,0 +1,11 @@
1
+ __pycache__/
2
+ *.py[cod]
3
+ *.egg-info/
4
+ .venv/
5
+ dist/
6
+ build/
7
+ .uv/
8
+ uv.lock
9
+ .python-version
10
+ .DS_Store
11
+ tmp/
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Elvis Kahoro
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.
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: gtm-linear
3
+ Version: 0.0.1
4
+ Summary: GTM workflow adapter for Linear.
5
+ Project-URL: Homepage, https://github.com/elviskahoro/sdk-python-linear
6
+ Project-URL: Repository, https://github.com/elviskahoro/sdk-python-linear
7
+ Project-URL: Issues, https://github.com/elviskahoro/sdk-python-linear/issues
8
+ Author-email: Elvis Kahoro <elvis@dlthub.com>
9
+ License: MIT
10
+ License-File: LICENSE
11
+ Keywords: gtm,linear,sdk
12
+ Classifier: Development Status :: 2 - Pre-Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Requires-Python: >=3.11
20
+ Description-Content-Type: text/markdown
21
+
22
+ # gtm-linear
23
+
24
+ GTM workflow adapter for Linear.
25
+
26
+ ## Install
27
+
28
+ ```bash
29
+ uv pip install gtm-linear
30
+ ```
31
+
32
+ ## Status
33
+
34
+ Pre-alpha. Name reserved on PyPI; API surface coming soon.
@@ -0,0 +1,13 @@
1
+ # gtm-linear
2
+
3
+ GTM workflow adapter for Linear.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ uv pip install gtm-linear
9
+ ```
10
+
11
+ ## Status
12
+
13
+ Pre-alpha. Name reserved on PyPI; API surface coming soon.
@@ -0,0 +1,34 @@
1
+ [project]
2
+ name = "gtm-linear"
3
+ version = "0.0.1"
4
+ description = "GTM workflow adapter for Linear."
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ license = { text = "MIT" }
8
+ authors = [{ name = "Elvis Kahoro", email = "elvis@dlthub.com" }]
9
+ keywords = ["linear", "gtm", "sdk"]
10
+ classifiers = [
11
+ "Development Status :: 2 - Pre-Alpha",
12
+ "Intended Audience :: Developers",
13
+ "License :: OSI Approved :: MIT License",
14
+ "Programming Language :: Python :: 3",
15
+ "Programming Language :: Python :: 3.11",
16
+ "Programming Language :: Python :: 3.12",
17
+ "Programming Language :: Python :: 3.13",
18
+ ]
19
+ dependencies = []
20
+
21
+ [project.urls]
22
+ Homepage = "https://github.com/elviskahoro/sdk-python-linear"
23
+ Repository = "https://github.com/elviskahoro/sdk-python-linear"
24
+ Issues = "https://github.com/elviskahoro/sdk-python-linear/issues"
25
+
26
+ [build-system]
27
+ requires = ["hatchling"]
28
+ build-backend = "hatchling.build"
29
+
30
+ [tool.hatch.build.targets.wheel]
31
+ packages = ["src/gtm_linear"]
32
+
33
+ [tool.hatch.build.targets.sdist]
34
+ include = ["src/gtm_linear", "README.md", "LICENSE"]
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"