Skip to content

Commit

Permalink
Merge pull request #12 from UrbsLab/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
robertfrankzhang authored Mar 28, 2020
2 parents cc3c99c + b5e7be5 commit 2f2c6e8
Show file tree
Hide file tree
Showing 16 changed files with 93 additions and 124 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
__pycache__/
186 changes: 62 additions & 124 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
from distutils.core import setup
setup(
name = 'scikit-eLCS',
packages = ['skeLCS'],
version = '1.0',
license='License :: OSI Approved :: GNU GPL v3.0',
description = 'Educational Learning Classifier System',
author = 'Robert Zhang, Ryan J. Urbanowicz',
author_email = 'robertzh@seas.upenn.edu,ryanurb@upenn.edu',
url = 'https://github.com/UrbsLab/scikit-eLCS',
download_url = 'https://github.com/user/reponame/archive/v_01.tar.gz',
keywords = ['machine learning','data analysis','data science','learning classifier systems'],
install_requires=['numpy','pandas'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Topic :: Utilities',
'License :: OSI Approved :: GNU GPL v3.0',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)
Binary file removed skeLCS/__pycache__/ClassAccuracy.cpython-37.pyc
Binary file not shown.
Binary file removed skeLCS/__pycache__/Classifier.cpython-37.pyc
Binary file not shown.
Binary file removed skeLCS/__pycache__/ClassifierSet.cpython-37.pyc
Binary file not shown.
Binary file removed skeLCS/__pycache__/DataCleanup.cpython-37.pyc
Binary file not shown.
Binary file removed skeLCS/__pycache__/DataManagement.cpython-37.pyc
Binary file not shown.
Binary file removed skeLCS/__pycache__/DynamicNPArray.cpython-37.pyc
Binary file not shown.
Binary file removed skeLCS/__pycache__/IterationRecord.cpython-37.pyc
Binary file not shown.
Binary file not shown.
Binary file removed skeLCS/__pycache__/Prediction.cpython-37.pyc
Binary file not shown.
Binary file removed skeLCS/__pycache__/Timer.cpython-37.pyc
Binary file not shown.
Binary file removed skeLCS/__pycache__/__init__.cpython-37.pyc
Binary file not shown.
Binary file removed skeLCS/__pycache__/eLCS.cpython-37.pyc
Binary file not shown.

0 comments on commit 2f2c6e8

Please sign in to comment.