ctml/setup.py

15 lines
559 B
Python
Raw Normal View History

2021-11-02 01:02:17 +01:00
from setuptools import setup
setup(
2021-11-02 01:13:01 +01:00
name='ctml',
2021-11-02 01:15:56 +01:00
packages=['assignment5'],
2021-11-02 01:02:17 +01:00
version='0.1',
description='Computational Techniques for Machine Learning course repository',
2021-11-02 01:13:01 +01:00
url='https://git.disroot.org/gregorio/ctml',
2021-11-02 01:02:17 +01:00
author='gregorio, jessica, alejandro',
author_email='gregorio@disroot.org',
2021-11-02 01:15:56 +01:00
py_modules=['assignment5'],
2021-11-02 01:02:17 +01:00
long_description=open('README.md').read(),
license='CC-BY-4.0',
2021-11-02 17:36:40 +01:00
install_requires=['numpy','pandas','brminer','scikit-posthocs','Orange3','seaborn','matplotlib','scipy','sklearn','requests'],
2021-11-02 01:02:17 +01:00
)