forked from ranaroussi/quantstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
61 lines (53 loc) · 1.49 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
{% set name = "QuantStats" %}
{% set version = "0.0.22" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: "c445478da26bedf5517c61272b4b49d834f72c600740951f36d02424aba321c8"
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "
requirements:
host:
- matplotlib >=3.0.0
- numpy >=1.15.0
- pandas >=0.24.0
- pip
- python
- scipy >=1.2.0
- seaborn >=0.9.0
- tabulate >=0.8.0
- yfinance >=0.1.44
run:
- matplotlib >=3.0.0
- numpy >=1.15.0
- pandas >=0.24.0
- python
- scipy >=1.2.0
- seaborn >=0.9.0
- tabulate >=0.8.0
- yfinance >=0.1.44
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