-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 832 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (28 loc) · 832 Bytes
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
from setuptools import setup, find_packages
setup(
name="b2b-outbound-sniper",
version="1.0.0",
description="Autonomous B2B outbound that turns job board hiring signals into qualified pipeline",
author="Lemnos AI",
author_email="nick@getlemnos.ai",
url="https://github.com/getlemnos32/b2b-outbound-sniper",
packages=find_packages(),
install_requires=[
"anthropic>=0.49.0",
"openai>=1.0.0",
"google-genai>=1.0.0",
"requests>=2.31.0",
"pyyaml>=6.0",
],
python_requires=">=3.9",
entry_points={
"console_scripts": [
"sniper=sniper.main:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)