-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (36 loc) · 1.13 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
38
39
40
41
42
import runpy
import setuptools
__version__= "0.0.1"
DEV_REQUIREMENTS = [
"black",
"flake8",
"isort",
"jupyterlab",
"pre-commit",
"pytest",
]
# Parse requirements
install_requires = [line.strip() for line in open("requirements.txt").readlines()]
# Get long description
with open("README.md", "r", encoding="UTF-8") as fh:
long_description = fh.read()
# __version__ = runpy.run_path("ml-algorithmskit/_version.py")["__version__"]
# Setup package
setuptools.setup(
name="ML-AlgorithmsKit",
version="0.0.1",
author="Sandesh Katakam",
author_email="[email protected]",
description="A Library with Implementations of Machine Learning Algorithms from scratch",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ML-AlgorithmsKit",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache License",
"Operating System :: OS Independent",
],
install_requires=install_requires,
extras_require={"dev": DEV_REQUIREMENTS},
)