Skip to content

Instantly share code, notes, and snippets.

@ruvnet
Created January 23, 2025 17:45
Show Gist options
  • Save ruvnet/6be76c23681431e885de7c071be578cf to your computer and use it in GitHub Desktop.
Save ruvnet/6be76c23681431e885de7c071be578cf to your computer and use it in GitHub Desktop.
update sparc setup.py
from setuptools import setup, find_packages
from pathlib import Path
# Read the contents of README.md
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='sparc',
version='0.87.6',
packages=['sparc_cli'] + ['sparc_cli.' + pkg for pkg in find_packages('sparc_cli')],
package_dir={'sparc_cli': 'sparc_cli'},
install_requires=[
'twine',
'setuptools',
'wheel',
'flake8',
'black',
'pytest',
'pip-upgrader',
'httpx',
'beautifulsoup4',
'pypandoc',
'playwright',
'langchain-core',
'numpy',
'sympy',
'langchain',
],
author='rUv',
author_email='[email protected]',
description='SPARC CLI is a powerful command-line interface that implements the SPARC Framework methodology for AI-assisted software development.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ruvnet/sparc',
license='Apache License 2.0',
entry_points={
'console_scripts': [
'sparc=sparc_cli.__main__:main',
],
},
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment