mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	Merge branch 'develop' of https://github.com/explosion/spaCy into develop
This commit is contained in:
		
						commit
						1f5874a927
					
				| 
						 | 
					@ -80,7 +80,7 @@ def generate_meta():
 | 
				
			||||||
    settings = [('lang', 'Model language', 'en'),
 | 
					    settings = [('lang', 'Model language', 'en'),
 | 
				
			||||||
                ('name', 'Model name', 'model'),
 | 
					                ('name', 'Model name', 'model'),
 | 
				
			||||||
                ('version', 'Model version', '0.0.0'),
 | 
					                ('version', 'Model version', '0.0.0'),
 | 
				
			||||||
                ('spacy_version', 'Required spaCy version', '>=2.0.0,<3.0.0'),
 | 
					                ('spacy_version', 'Required spaCy version', '>=%s,<3.0.0' % about.__version__),
 | 
				
			||||||
                ('description', 'Model description', False),
 | 
					                ('description', 'Model description', False),
 | 
				
			||||||
                ('author', 'Author', False),
 | 
					                ('author', 'Author', False),
 | 
				
			||||||
                ('email', 'Author email', False),
 | 
					                ('email', 'Author email', False),
 | 
				
			||||||
| 
						 | 
					@ -92,6 +92,8 @@ def generate_meta():
 | 
				
			||||||
        response = util.get_raw_input(desc, default)
 | 
					        response = util.get_raw_input(desc, default)
 | 
				
			||||||
        meta[setting] = default if response == '' and default else response
 | 
					        meta[setting] = default if response == '' and default else response
 | 
				
			||||||
    meta['pipeline'] = generate_pipeline()
 | 
					    meta['pipeline'] = generate_pipeline()
 | 
				
			||||||
 | 
					    if about.__title__ != 'spacy':
 | 
				
			||||||
 | 
					        meta['parent_package'] = about.__title__
 | 
				
			||||||
    return meta
 | 
					    return meta
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -5,7 +5,7 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        "SITENAME": "spaCy",
 | 
					        "SITENAME": "spaCy",
 | 
				
			||||||
        "SLOGAN": "Industrial-strength Natural Language Processing in Python",
 | 
					        "SLOGAN": "Industrial-strength Natural Language Processing in Python",
 | 
				
			||||||
        "SITE_URL": "https://spacy.io",
 | 
					        "SITE_URL": "https://alpha.spacy.io",
 | 
				
			||||||
        "EMAIL": "contact@explosion.ai",
 | 
					        "EMAIL": "contact@explosion.ai",
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        "COMPANY": "Explosion AI",
 | 
					        "COMPANY": "Explosion AI",
 | 
				
			||||||
| 
						 | 
					@ -14,8 +14,8 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        "SPACY_VERSION": "1.8",
 | 
					        "SPACY_VERSION": "1.8",
 | 
				
			||||||
        "LATEST_NEWS": {
 | 
					        "LATEST_NEWS": {
 | 
				
			||||||
            "url": "https://survey.spacy.io/",
 | 
					            "url": "https://github.com/explosion/spaCy/releases/tag/v2.0.0-alpha",
 | 
				
			||||||
            "title": "Take the spaCy user survey and help us improve the library!"
 | 
					            "title": "Test spaCy v2.0.0 alpha!"
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        "SOCIAL": {
 | 
					        "SOCIAL": {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,5 +1,9 @@
 | 
				
			||||||
//- 💫 ROBOTS.TXT
 | 
					//- 💫 ROBOTS.TXT
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if environment != "deploy" || ALPHA
 | 
					if environment != "deploy"
 | 
				
			||||||
    | User-agent: *
 | 
					    | User-agent: *
 | 
				
			||||||
    | Disallow: /
 | 
					    | Disallow: /
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if ALPHA
 | 
				
			||||||
 | 
					    | User-agent: Googlebot
 | 
				
			||||||
 | 
					    | Disallow: /
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user