-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 819 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (22 loc) · 819 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
import setuptools
with open('README.md', 'r') as readme:
long_description = readme.read()
with open('requirements.txt', 'r') as req:
requirements = req.readlines()
print(requirements)
setuptools.setup(
name='pymlalgo',
version='0.0.1',
author='Vivek Kumar',
author_email='vivekuma@uw.edu',
description='Implementation of standard machine learning algorithms from scratch in Python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/vivekkr12/machine-learning-algorithms',
packages=setuptools.find_packages(exclude=["*.test", "*.test.*", "test.*", "test"]),
install_requires=requirements,
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
]
)