forked from ranaroussi/quantstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
64 lines (56 loc) · 1.53 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{% set name = "QuantStats" %}
{% set version = "0.0.35" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: "c09e9ad157f6cbbf76c7cace6d52e64486a64fffdb21f4a840152f7e9ea8f8a2"
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "
requirements:
host:
- pandas >=0.24.0
- numpy >=1.16.5
- seaborn >=0.9.0
- matplotlib >=3.0.0
- scipy >=1.2.0
- tabulate >=0.8.0
- yfinance >=0.1.55
- pip
- python
- scipy >=1.2.0
run:
- pandas >=0.24.0
- numpy >=1.16.5
- seaborn >=0.9.0
- matplotlib >=3.0.0
- scipy >=1.2.0
- tabulate >=0.8.0
- yfinance >=0.1.55
- pip
- python
- scipy >=1.2.0
test:
imports:
- quantstats
- quantstats._plotting
about:
home: "https://github.com/ranaroussi/quantstats"
license: "Apache Software"
license_family: "APACHE"
license_file: ""
summary: "QuantStats: Portfolio analytics for quants"
description: |
QuantStats Python library that performs portfolio profiling,
allowing quants and portfolio managers to understand their
performance better by providing them with in-depth analytics
and risk metrics.
doc_url: "https://github.com/ranaroussi/quantstats"
dev_url: "https://pypi.python.org/pypi/quantstats"
doc_source_url: https://github.com/ranaroussi/quantstats/blob/master/README.rst
extra:
recipe-maintainers:
- ranaroussi