presubmit 0.1.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,6 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ ...
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: presubmit
3
+ Version: 0.1.0
4
+ Summary: A simple pre-submission checks utility
5
+ Author: Presubmit
6
+ Author-email: Presubmit <usepresubmit@gmail.com>
7
+ License: MIT
8
+ Requires-Python: >=3.7
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Dynamic: license-file
12
+
13
+ # presubmit
14
+
15
+ A simple pre-submission checks utility for your projects.
@@ -0,0 +1,3 @@
1
+ # presubmit
2
+
3
+ A simple pre-submission checks utility for your projects.
@@ -0,0 +1,5 @@
1
+ """
2
+ Presubmit - A simple pre-submission checks utility
3
+ """
4
+
5
+ __version__ = "0.1.0"
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: presubmit
3
+ Version: 0.1.0
4
+ Summary: A simple pre-submission checks utility
5
+ Author: Presubmit
6
+ Author-email: Presubmit <usepresubmit@gmail.com>
7
+ License: MIT
8
+ Requires-Python: >=3.7
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Dynamic: license-file
12
+
13
+ # presubmit
14
+
15
+ A simple pre-submission checks utility for your projects.
@@ -0,0 +1,11 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ setup.cfg
5
+ setup.py
6
+ presubmit/__init__.py
7
+ presubmit.egg-info/PKG-INFO
8
+ presubmit.egg-info/SOURCES.txt
9
+ presubmit.egg-info/dependency_links.txt
10
+ presubmit.egg-info/top_level.txt
11
+ tests/test_basic.py
@@ -0,0 +1 @@
1
+ presubmit
@@ -0,0 +1,13 @@
1
+ [project]
2
+ name = "presubmit"
3
+ version = "0.1.0"
4
+ description = "A simple pre-submission checks utility"
5
+ authors = [{ name = "Presubmit", email = "usepresubmit@gmail.com" }]
6
+ license = { text = "MIT" }
7
+ readme = "README.md"
8
+ requires-python = ">=3.7"
9
+ dependencies = []
10
+
11
+ [build-system]
12
+ requires = ["setuptools>=61.0", "wheel"]
13
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,14 @@
1
+ [metadata]
2
+ name = presubmit
3
+ version = 0.1.0
4
+ description = A simple pre-submission checks utility
5
+ author = Presubmit
6
+ author_email = usepresubmit@gmail.com
7
+ license = MIT
8
+ long_description = file: README.md
9
+ long_description_content_type = text/markdown
10
+
11
+ [egg_info]
12
+ tag_build =
13
+ tag_date = 0
14
+
@@ -0,0 +1,4 @@
1
+ # setup.py
2
+ from setuptools import setup
3
+
4
+ setup()
@@ -0,0 +1,2 @@
1
+ def test_basic():
2
+ assert 1 + 1 == 2