diff --git a/LICENSE.txt b/LICENSE.txt index 2d853f4..0288f10 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -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 diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..a2fbfa3 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include LICENSE.txt +include README.md +include blinks.png \ No newline at end of file diff --git a/setup.py b/setup.py index ef713e8..2c86eb9 100644 --- a/setup.py +++ b/setup.py @@ -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', @@ -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'],