-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
54 lines (44 loc) · 1.05 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
{% set data = load_setup_py_data() %}
package:
name: {{ data['name'] }}
version: {{ data['version'] }}
source:
path: .
git_path: https://github.com/MatejVitek/Python-Libraries.git
build:
script: {{ PYTHON }} -m pip install --no-deps --ignore-installed .
requirements:
build:
- python
- setuptools
run:
- python {{ data['python_requires'] }}
- joblib
- numpy
- tqdm
- requests
- ruamel.yaml
about:
home: https://github.com/MatejVitek/Python-Libraries
license: GPL-3.0
license_file: LICENSE
summary: Collection of Python utility libraries.
from setuptools import setup, find_packages
version = "0.12"
setup(
name='matej-libs',
version=version,
author="Matej Vitek",
author_email="matej.vitek.business@gmail.com",
description="Collection of Python utility libraries.",
long_description=open('README.md', encoding='utf-8').read(),
url='',
packages=find_packages(),
python_requires='>=3.12',
install_requires=['numpy'],
extras_require={
'google-drive': ['requests'],
'config': ['ruamel.yaml'],
'parallel': ['joblib']
}
)