Skip to content

Commit

Permalink
update setup.py, README, changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
taspinar committed Jul 19, 2018
1 parent 03f03e4 commit bb75ecd
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 113 deletions.
21 changes: 0 additions & 21 deletions LICENSE.txt

This file was deleted.

49 changes: 0 additions & 49 deletions README.rst

This file was deleted.

37 changes: 20 additions & 17 deletions changelog.txt
@@ -1,17 +1,20 @@
# SIML changelog

## 0.x.x

TBD

## 0.2.1 (2017-11-29)
-----------
### Fixed
- Added some missing imports


## 0.2.0 ( 2017-11-21 )
-----------
### Added
- Added sk_utils.py which includes often used method for classification and analysis with the scikit-learn package.

# SIML changelog

## 0.x.x

TBD
## 0.3.0 ( 2018-07-19 )
### Added
- Added methods for the analysis and classification of signals and time-series.

## 0.2.1 ( 2017-11-29 )
-----------
### Fixed
- Added some missing imports


## 0.2.0 ( 2017-11-21 )
-----------
### Added
- Added sk_utils.py which includes often used method for classification and analysis with the scikit-learn package.

28 changes: 14 additions & 14 deletions setup.py
@@ -1,14 +1,14 @@
from setuptools import setup

setup(
name='siml',
version='0.2.1',
description='Machine Learning algorithms implemented from scratch',
url='https://github.com/taspinar/siml',
author='Ahmet Taspinar',
author_email='taspinar@gmail.com',
license='MIT',
packages=['siml'],
install_requires=['numpy', 'scikit-learn'],
zip_safe=False
)
from setuptools import setup

setup(
name='siml',
version='0.2.2',
description='Machine Learning algorithms implemented from scratch',
url='https://github.com/taspinar/siml',
author='Ahmet Taspinar',
author_email='taspinar@gmail.com',
license='MIT',
packages=['siml'],
install_requires=['numpy', 'scikit-learn'],
zip_safe=False
)
24 changes: 12 additions & 12 deletions siml/__init__.py
@@ -1,12 +1,12 @@
# siML
# Copyright 2016-2017 Ahmet Taspinar
# See LICENSE for details.

"""
Library implementing Machine Learning algorithms from scratch
"""
__version__ = '0.1'
__author__ = 'Ahmet Taspinar'
__license__ = 'MIT'

from siml import *
# siML
# Copyright 2016-2017 Ahmet Taspinar
# See LICENSE for details.

"""
Library implementing Machine Learning algorithms from scratch
"""
__version__ = '0.3.0'
__author__ = 'Ahmet Taspinar'
__license__ = 'MIT'

from siml import *

0 comments on commit bb75ecd

Please sign in to comment.