-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (30 loc) · 1.16 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
from setuptools import setup, find_packages
import os
repository_dir = os.path.dirname(__file__)
with open(os.path.join(repository_dir, "README.md")) as fh:
long_description = fh.read()
setup(
name="showml",
version="1.6.12",
packages=find_packages(exclude="tests"),
description="A Python package of Machine Learning Algorithms implemented from scratch",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hasnainroopawalla/ShowML",
author="Hasnain Roopawalla",
author_email="hasnain.roopawalla@gmail.com",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="python, machinelearning, ai",
python_requires=">=3.6",
)