forked from QuixiAI/github2file
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (48 loc) · 1.48 KB
/
setup.py
File metadata and controls
49 lines (48 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
setup(
name='codeweave',
version='0.1.0',
packages=find_packages(),
entry_points={
'console_scripts': [
'codeweave = codeweave.main:main',
'cw = codeweave.main:main'
]
},
install_requires=[
'requests',
'certifi==2024.2.2',
'charset-normalizer==3.3.2',
'idna==3.6',
'requests==2.31.0',
'tk==0.1.0',
'urllib3==2.2.1',
'tqdm',
'nbformat',
'nbconvert',
'pdfminer.six',
'rich',
],
extras_require={
'ai': ['litellm>=1.0.0'], # Preferred AI provider
'ai-basic': ['openai>=1.0.0'], # Fallback AI provider
},
tests_require=['pytest'],
test_suite='pytest',
author='Your Name',
author_email='your_email@example.com',
description='CodeWeave - Intelligent source code aggregation and AI workflow optimization',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/yourusername/codeweave',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
)