Files
ml_things/setup.py
2020-09-08 12:41:15 -05:00

25 lines
746 B
Python

from setuptools import setup, find_packages
with open("README.md", "r") as readme_file:
readme = readme_file.read()
requirements = []
setup(
name="ml_things",
version="0.0.1",
scripts=['ml_things'],
author="George Mihaila",
author_email="georgemihaila@my.unt.edu",
description="A package to keep all helping functions used in Machine Learning together",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/gmihaila/ml_things",
packages=find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: MIT License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)