1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-23 16:24:18 +00:00

Bumped version to 0.10

This commit is contained in:
Pablo Hoffman 2010-09-10 01:48:45 -03:00
parent 9b9b3a2b64
commit b16eff227b
2 changed files with 3 additions and 6 deletions

View File

@ -2,8 +2,8 @@
Scrapy - a screen scraping framework written in Python
"""
version_info = (0, 10, 0, 'rc1')
__version__ = "0.10-rc1"
version_info = (0, 10, 0, '')
__version__ = "0.10"
import sys, os, warnings

View File

@ -78,12 +78,9 @@ scripts = ['bin/scrapy']
if os.name == 'nt':
scripts.append('extras/scrapy.bat')
# Dynamically calculate the version based on scrapy.__version__
version = ".".join(map(str, __import__('scrapy').version_info[:2]))
setup_args = {
'name': 'Scrapy',
'version': version,
'version': __import__('scrapy').__version__,
'url': 'http://scrapy.org',
'description': 'A high-level Python Screen Scraping framework',
'long_description': 'Scrapy is a high level scraping and web crawling framework for writing spiders to crawl and parse web pages for all kinds of purposes, from information retrieval to monitoring or testing web sites.',