-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (26 loc) · 821 Bytes
/
setup.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# 2021, Jan Cervenka
import setuptools
import pathlib
VERSION = "0.2.3"
def run_setup():
"""
Runs the package setup.
"""
this_directory = pathlib.Path(__file__).parent
setup_params = {
"name": "acf",
"version": VERSION,
"description": "Lightweight recommender engine",
"author": "Jan Cervenka",
"author_email": "[email protected]",
"long_description": (this_directory / "README.md").read_text(),
"long_description_content_type": "text/markdown",
"packages": ["acf", "acf.core", "acf.tests"],
"python_requires": ">=3.7",
"install_requires": ["pandas>=1.0", "numpy>=1.16"],
}
setuptools.setup(**setup_params)
if __name__ == "__main__":
run_setup()