Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pypi pull request #6

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ def multiclass_classifier():
binary_predictions = predict_binary_classifier(binary_test_data)

import pickle
f2 = open('/Users/sarataylor/Dev/eda-explorer-public/SVMBinary.p', 'rb')
f2 = open('/Users/sarataylor/Dev/eda-explorer-explorer-public/SVMBinary.p', 'rb')
s2 = f2.read()
clf = pickle.loads(s2)

Expand All @@ -591,7 +591,7 @@ def multiclass_classifier():

multi_predictions = predict_multiclass_classifier(test_data)

f2 = open('/Users/sarataylor/Dev/eda-explorer-public/SVMMulticlass.p', 'rb')
f2 = open('/Users/sarataylor/Dev/eda-explorer-explorer-public/SVMMulticlass.p', 'rb')
s2 = f2.read()
clf = pickle.loads(s2)

Expand Down
File renamed without changes.
2 changes: 2 additions & 0 deletions eda-explorer/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import EDA-Artifact-Detection-Script
from . import EDA-Peak-Detection-Script
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Inside of setup.cfg
[metadata]
description-file = README.md
35 changes: 35 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
from distutils.core import setup
setup(
name='eda-explorer', # How you named your package folder (MyLib)
packages=['eda-explorer'], # Chose the same as "name"
version='0.1', # Start with a small number and increase it with every change you make
license='MIT', # Chose a license
description='Scripts to detect artifacts and in electrodermal activity (EDA) data',
author='Taylor, S., Jaques, N., Chen, W., Fedor, S., Sano, A., & Picard, R.', # Type in your name
author_email='[email protected]', # Type in your E-Mail
url='https://github.com/MITMediaLabAffectiveComputing/eda-explorer',
download_url='https://github.com/MITMediaLabAffectiveComputing/eda-explorer/archive/v_01.tar.gz',
keywords=['EDA', 'ARTIFACT', 'PEAK'], # Keywords that define your package best
install_requires=[
'numpy',
'pandas',
'matplotlib',
'sklearn',
'pickle',
'PyWavelets',
'scipy',
'pprint',
],
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the
# current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3', # Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)