Initial upload: snippet-manager with CI/CD workflow
This commit is contained in:
28
setup.py
Normal file
28
setup.py
Normal file
@@ -0,0 +1,28 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="snip",
|
||||
version="0.1.0",
|
||||
description="Local-First Code Snippet Manager",
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
"click>=8.3.0",
|
||||
"cryptography>=46.0.0",
|
||||
"pygments>=2.19.0",
|
||||
"rich>=13.0.0",
|
||||
"zeroconf>=0.148.0",
|
||||
],
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"snip=snip.cli:cli",
|
||||
],
|
||||
},
|
||||
python_requires=">=3.11",
|
||||
classifiers=[
|
||||
"Development Status :: 3 - Alpha",
|
||||
"Intended Audience :: Developers",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user