Skip to content

Commit

Permalink
Added MANIFEST.in, corrected package name to muselsl.
Browse files Browse the repository at this point in the history
  • Loading branch information
kowalej committed May 13, 2018
1 parent 6615bd1 commit 530737a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright © 2018, authors of muse-lsl
Copyright © 2018, authors of muselsl
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include LICENSE.txt
include README.md
include blinks.png
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ def copy_docs():
os.makedirs(docs_dir)

copyfile('README.md', docs_dir + '/README.md')
copyfile('blinks.png', docs_dir + '/blinks.png')
#copyfile('blinks.png', docs_dir + '/blinks.png')

copy_docs()

setup(name='muse-lsl',
setup(name='muselsl',
version='1.0.0',
description='Stream and visualize EEG data from the Muse 2016 headset.',
keywords='muse lsl eeg ble neuroscience',
Expand All @@ -22,7 +22,7 @@ def copy_docs():
license='BSD (3-clause)',
scripts=['muselsl/muse-lsl.py'],
packages=find_packages(),
package_data={'muselsl': ['docs/blinks.png', 'docs/README.md']},
package_data={'muselsl': ['docs/README.md']},
include_package_data=True,
zip_safe=False,
install_requires=['bitstring', 'pylsl', 'pygatt', 'pandas', 'scikit-learn', 'numpy', 'seaborn', 'pexpect'],
Expand Down

0 comments on commit 530737a

Please sign in to comment.