-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 886 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (29 loc) · 886 Bytes
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
from setuptools import setup, find_packages
setup(
name="MlScratch",
version="0.1.3",
url="https://github.com/aicroe/mlscratch",
project_urls={
"Bug Tracker": "https://github.com/aicroe/mlscratch/issues",
"Documentation": "https://github.com/aicroe/mlscratch",
"Source Code": "https://github.com/aicroe/mlscratch",
},
author="Diego Garcia",
author_email="qtimpot@gmail.com",
description="An abstraction to run, train and test machine learning models",
keywords=["machine learning", "deep learning", "neural network", "training"],
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=False,
python_requires=">=3.6",
install_requires=[
"numpy",
],
extras_require={
"dev": [
"pylint",
],
},
zip_safe=True,
test_suite="tests",
)