зеркало из
				https://github.com/viginum-datalab/twscrape.git
				synced 2025-10-29 13:06:13 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			62 строки
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			62 строки
		
	
	
		
			1.3 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [build-system]
 | |
| requires = ["hatchling>=1.9.1"]
 | |
| build-backend = "hatchling.build"
 | |
| 
 | |
| [project]
 | |
| name = "twscrape"
 | |
| version = "0.11.1"
 | |
| authors = [{name = "vladkens", email = "v.pronsky@gmail.com"}]
 | |
| description = "Twitter GraphQL and Search API implementation with SNScrape data models"
 | |
| readme = "readme.md"
 | |
| requires-python = ">=3.10"
 | |
| keywords = ["twitter", "scrape", "scrapper", "api", "snscrape"]
 | |
| license = {text = "MIT"}
 | |
| classifiers = [
 | |
|   'Development Status :: 4 - Beta',
 | |
|   'License :: OSI Approved :: MIT License',
 | |
|   'Programming Language :: Python :: 3.10',
 | |
|   'Programming Language :: Python :: 3.11',
 | |
|   'Programming Language :: Python :: 3.12',
 | |
| ]
 | |
| dependencies = [
 | |
|   "aiosqlite>=0.17.0",
 | |
|   "fake-useragent>=1.4.0",
 | |
|   "httpx>=0.26.0",
 | |
|   "loguru>=0.7.0",
 | |
| ]
 | |
| 
 | |
| [project.optional-dependencies]
 | |
| dev = [
 | |
|   "pyright>=1.1.350",
 | |
|   "pytest-asyncio>=0.23.3",
 | |
|   "pytest-cov>=4.1.0",
 | |
|   "pytest-httpx>=0.28.0",
 | |
|   "pytest>=7.4.4",
 | |
|   "ruff>=0.1.11",
 | |
| ]
 | |
| 
 | |
| [project.urls]
 | |
| repository = "https://github.com/vladkens/twscrape"
 | |
| 
 | |
| [project.scripts]
 | |
| twscrape = "twscrape.cli:run"
 | |
| 
 | |
| [tool.setuptools]
 | |
| packages = ['twscrape']
 | |
| 
 | |
| [tool.hatch.build.targets.wheel]
 | |
| packages = ["twscrape"]
 | |
| 
 | |
| [tool.hatch.metadata]
 | |
| allow-direct-references = true
 | |
| 
 | |
| [tool.pytest.ini_options]
 | |
| pythonpath = ["."]
 | |
| asyncio_mode = "auto"
 | |
| 
 | |
| [tool.ruff]
 | |
| line-length = 99
 | |
| 
 | |
| [tool.ruff.lint]
 | |
| ignore = ["E501"]
 | 
