-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (32 loc) · 1.15 KB
/
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
35
36
37
from setuptools import setup, find_packages
VERSION = "3.0.0"
DESCRIPTION = """
A Python library called ScratchML was created to build the most fundamental Machine Learning models from scratch, emphasizing producing user-friendly, straightforward, and easy-to-use implementations for novices and enthusiasts.
"""
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
with open("requirements/requirements.txt", "r", encoding="utf-8") as f:
install_requires = f.read()
with open("requirements/requirements_test.txt", "r", encoding="utf-8") as f:
test_requires = f.read()
setup(
name="ScratchML",
version=VERSION,
author="Rafael Greca Vieira",
author_email="[email protected]",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(include=["scratchml"]),
install_requires=install_requires,
tests_require=test_requires,
test_suite="tests",
keywords=[
"python",
"scratch",
"machine learning",
"linear regression",
"logistic regression",
],
python_requires=">=3.11",
)