-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (53 loc) · 2.08 KB
/
setup.py
File metadata and controls
57 lines (53 loc) · 2.08 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
53
54
55
56
57
"""Setup script for Blog Agents package."""
from setuptools import setup, find_packages
from pathlib import Path
# Read README
readme_file = Path(__file__).parent / "README.md"
long_description = readme_file.read_text(encoding="utf-8") if readme_file.exists() else ""
# Read requirements
requirements_file = Path(__file__).parent / "blog_agents_requirements.txt"
requirements = []
if requirements_file.exists():
requirements = [
line.strip()
for line in requirements_file.read_text(encoding="utf-8").splitlines()
if line.strip() and not line.startswith("#")
]
setup(
name="blog-agents",
version="1.0.0",
description="Multi-Agent Blog Content Generation System",
long_description=long_description,
long_description_content_type="text/markdown",
author="Your Name",
author_email="your.email@example.com",
url="https://github.com/yourusername/blog-agents",
packages=find_packages(exclude=["tests", "tests.*", "examples", "examples.*"]),
install_requires=requirements,
python_requires=">=3.9",
entry_points={
"console_scripts": [
"blog-agents=blog_agents.cli.blog_cli:cli",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords="blog ai agents claude nlp content-generation",
project_urls={
"Documentation": "https://github.com/yourusername/blog-agents#readme",
"Source": "https://github.com/yourusername/blog-agents",
"Tracker": "https://github.com/yourusername/blog-agents/issues",
},
)