-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.yaml
49 lines (42 loc) · 1.15 KB
/
meta.yaml
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
# https://docs.conda.io/projects/conda-build/en/latest/resources/define-metadata.html
{% set version = "0.0.2" %}
package:
name: newsnlp
version: {{ version }}
source:
path: ./src
build:
noarch: python
number: 0
script: python -m pip install --no-deps --ignore-installed . -vv
requirements:
host:
- python
- pip
run:
- python
- Cython
- autograd
- spacy
- fr-core-news-sm @ https://github.com/explosion/spacy-models/releases/download/fr_core_news_sm-3.5.0/fr_core_news_sm-3.5.0-py3-none-any.whl
- sentencepiece
- transformers[torch]
- sacremoses
test:
imports:
- newsnlp
about:
home: https://github.com/techoutlooks/newsnlp
license: MIT
license_file: LICENSE.txt
summary: 'News NLP library'
description: |
This module perform inference on summarization tasks
summary, caption, category of scraped news articles
using pre-trained NLP models.
dev_url: https://github.com/techoutlooks/newsnlp/tree/dev
doc_url: https://github.com/techoutlooks/newsnlp/tree/main
doc_source_url: https://github.com/techoutlooks/newsnlp/tree/dev/README.md
extra:
maintainers:
- ceduth