Skip to content

Commit

Permalink
Merged
Browse files Browse the repository at this point in the history
  • Loading branch information
ONordander committed Apr 20, 2017
2 parents 70e6b17 + 2c4fe92 commit f4d8b24
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ environment:
WHEELHOUSE_UPLOADER_USERNAME: sklearn
WHEELHOUSE_UPLOADER_SECRET:
secure: XzK+Mi6Ba5frV2B/jHq7h4aD8/nox9SsI3T8Kub1L2XNevRSIurUEry3PdWESzRY
MODULE: skltemplate
PROJECT_NAME: sklearn-template
MODULE: id3
PROJECT_NAME: decision-tree-id3
CLOUD_STORAGE: CLOUDFILES
CLOUD_CONTATINER: sklearn-template-trial

Expand Down Expand Up @@ -94,4 +94,4 @@ cache:
# the MKL numpy and scipy wheels mirrored on a rackspace cloud
# container, speed up the appveyor jobs and reduce bandwidth
# usage on our rackspace account.
- '%APPDATA%\pip\Cache'
- '%APPDATA%\pip\Cache'
2 changes: 1 addition & 1 deletion doc/api.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
API Documentation
=================

* :doc:`template`
* :doc:`id3`
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@
master_doc = 'index'

# General information about the project.
project = u'sklearn-template'
copyright = u'2016, Vighnesh Birodkar'
project = u'decision-tree-id3'
copyright = u'2017, Daniel Pettersson Otto Nordander'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
7 changes: 7 additions & 0 deletions doc/id3.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Id3
========

The documentation of the id3 module.

.. automodule:: id3.id3
:members:
7 changes: 0 additions & 7 deletions doc/template.rst

This file was deleted.

10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
print('scipy is required during installation')
sys.exit(1)

setup(name='sklearn-template',
version='0.0.3',
description='A template for scikit-learn compatible packages',
author='Vighnesh Birodkar',
setup(name='decision-tree-id3',
version='0.0.1',
description='A scikit-learn compatible package for id3 decision tree',
author='Daniel Pettersson, Otto Nordander',
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
author_email='vighneshbirodkar@nyu.edu',
author_email='svaante@gmail.com, otto.nordander@gmail.com',
)

0 comments on commit f4d8b24

Please sign in to comment.