|
| 1 | +from setuptools import setup, find_packages |
| 2 | + |
| 3 | +with open("README.md", "r", encoding="utf-8") as fh: |
| 4 | + long_description = fh.read() |
| 5 | + |
| 6 | +setup( |
| 7 | + name="surenav", |
| 8 | + version="1.0.0", |
| 9 | + author="Your Name", |
| 10 | + author_email="your.email@example.com", |
| 11 | + description="Open-source web unblocker for AI agents", |
| 12 | + long_description=long_description, |
| 13 | + long_description_content_type="text/markdown", |
| 14 | + url="https://github.com/YOUR_USERNAME/surenav", |
| 15 | + packages=find_packages(where="src"), |
| 16 | + package_dir={"": "src"}, |
| 17 | + classifiers=[ |
| 18 | + "Development Status :: 4 - Beta", |
| 19 | + "Intended Audience :: Developers", |
| 20 | + "License :: OSI Approved :: MIT License", |
| 21 | + "Operating System :: OS Independent", |
| 22 | + "Programming Language :: Python :: 3", |
| 23 | + "Programming Language :: Python :: 3.9", |
| 24 | + "Programming Language :: Python :: 3.10", |
| 25 | + "Programming Language :: Python :: 3.11", |
| 26 | + "Programming Language :: Python :: 3.12", |
| 27 | + "Topic :: Internet :: WWW/HTTP", |
| 28 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 29 | + ], |
| 30 | + python_requires=">=3.9", |
| 31 | + install_requires=[ |
| 32 | + "fastapi>=0.109.0", |
| 33 | + "uvicorn[standard]>=0.27.0", |
| 34 | + "playwright>=1.41.0", |
| 35 | + "playwright-stealth>=1.0.6", |
| 36 | + "beautifulsoup4>=4.12.3", |
| 37 | + "markdownify>=0.11.6", |
| 38 | + "aiohttp>=3.9.3", |
| 39 | + "aiofiles>=23.2.1", |
| 40 | + "fake-useragent>=1.4.0", |
| 41 | + "pydantic>=2.6.0", |
| 42 | + "pyyaml>=6.0.1", |
| 43 | + "httpx>=0.26.0", |
| 44 | + ], |
| 45 | + entry_points={ |
| 46 | + "console_scripts": [ |
| 47 | + "surenav-server=surenav.server:main", |
| 48 | + ], |
| 49 | + }, |
| 50 | +) |
0 commit comments