-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (50 loc) · 1.65 KB
/
Copy pathsetup.py
File metadata and controls
52 lines (50 loc) · 1.65 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
50
51
52
from setuptools import find_packages, setup # type: ignore[import]
with open("README.md", encoding="utf-8") as file_handle:
long_description = file_handle.read()
setup(
name="standupbot",
version="0.2.4",
description="Generate daily standup summaries from your git history using local or free cloud LLMs.",
long_description=long_description,
long_description_content_type="text/markdown",
author="SemTiOne",
license="MIT",
python_requires=">=3.10",
packages=find_packages(exclude=["tests*"]),
package_data={"standup": ["py.typed"]},
install_requires=[
"ollama>=0.1.7,<1.0.0",
"groq>=0.4.0,<2.0.0",
"gitpython>=3.1.40,<4.0.0",
"pyperclip>=1.8.2,<2.0.0",
"rich>=13.0.0,<16.0.0",
"requests>=2.31.0,<3.0.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"ruff>=0.4.4,<1.0.0",
"mypy>=1.10.0,<2.0.0",
"types-requests>=2.31.0",
"bandit>=1.7.8,<2.0.0",
"pip-audit>=2.7.3,<3.0.0",
]
},
entry_points={
"console_scripts": [
"standup=standup.main:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Software Development :: Version Control :: Git",
],
)