Compare commits
	
		
			5 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| d085335fc5 | |||
| a38dd669a8 | |||
| ace82a0f4d | |||
| 819115960b | |||
| 5bd06d892d | 
							
								
								
									
										21
									
								
								LICENSE
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								LICENSE
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,21 @@ | ||||
| MIT License | ||||
|  | ||||
| Copyright (c) 2025 Scott Alfter | ||||
|  | ||||
| Permission is hereby granted, free of charge, to any person obtaining a copy | ||||
| of this software and associated documentation files (the "Software"), to deal | ||||
| in the Software without restriction, including without limitation the rights | ||||
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||||
| copies of the Software, and to permit persons to whom the Software is | ||||
| furnished to do so, subject to the following conditions: | ||||
|  | ||||
| The above copyright notice and this permission notice shall be included in all | ||||
| copies or substantial portions of the Software. | ||||
|  | ||||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||||
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||||
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||||
| SOFTWARE. | ||||
							
								
								
									
										22
									
								
								pyproject.toml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								pyproject.toml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,22 @@ | ||||
| [build-system] | ||||
| requires = ["setuptools"] | ||||
| build-backend = "setuptools.build_meta" | ||||
|  | ||||
| [project] | ||||
| name = "partdb_labeler" | ||||
| version = "0.2.3" | ||||
| authors = [ | ||||
|     {name = "Scott Alfter", email = "scott@alfter.us"}, | ||||
| ] | ||||
| description = "PartDB Labeler" | ||||
| readme = "README.md" | ||||
| requires-python = ">=3.8" | ||||
| dependencies = [ | ||||
|         "requests",  | ||||
|         "zebra",  | ||||
|         "qrcode",  | ||||
|         "pillow" | ||||
| ] | ||||
|  | ||||
| [project.scripts] | ||||
| partdb_labeler = "partdb_labeler.partdb_labeler:cli" | ||||
							
								
								
									
										5
									
								
								setup.cfg
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								setup.cfg
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | ||||
| [metadata] | ||||
| description-file = README.md | ||||
| url = https://gitlab.alfter.us/salfter/partdb-labeler | ||||
| author = Scott Alfter | ||||
| author_email = scott@alfter.us | ||||
							
								
								
									
										24
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										24
									
								
								setup.py
									
									
									
									
									
								
							| @@ -1,24 +1,2 @@ | ||||
| from setuptools import setup | ||||
| import sys | ||||
|  | ||||
| with open("README.md", "r") as fh: | ||||
|     long_description = fh.read() | ||||
|  | ||||
| setup( | ||||
|     name="partdb_labeler", | ||||
|     version="0.2.1", | ||||
|     description="PartDB Labeler", | ||||
|     long_description=long_description, | ||||
|     long_description_content_type="text/markdown", | ||||
|     author="Scott Alfter", | ||||
|     author_email="scott@alfter.us", | ||||
|     url="https://gitlab.alfter.us/salfter/partdb-labeler", | ||||
|     py_modules=["partdb_labeler.partdb_labeler"], | ||||
|     install_requires=[ | ||||
|         "requests",  | ||||
|         "zebra",  | ||||
|         "qrcode",  | ||||
|         "pillow" | ||||
|     ], | ||||
|     entry_points={"console_scripts": ["partdb_labeler = partdb_labeler.partdb_labeler:cli"]} | ||||
| ) | ||||
| setup() | ||||
|   | ||||
		Reference in New Issue
	
	Block a user