Skip to content

Commit

Permalink
Modified version and set load data from MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Kan committed Jul 14, 2020
1 parent 8a5fc56 commit af6df9e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name='supermemo2',
version='0.0.4',
version='0.1.0',
description='Implements the SuperMemo-2/SM-2 algorithm for spaced repetition learning.',
long_description=open('README.txt').read() + '\n\n' + open('CHANGELOG.txt').read(),
long_description_content_type='text/markdown',
Expand All @@ -20,7 +20,7 @@
license='MIT',
classifiers=classifiers,
keywords='spaced-repetition SuperMemo-2 SM-2 SuperMemo',
packages=find_packages(exclude=['tests', 'test_*', 'old_dist']),
exclude_package_data={"": ['tests']},
packages=find_packages(exclude=('tests', 'test_*', 'old_dist', 'venv')),
include_package_data=True,
install_requires=['']
)

0 comments on commit af6df9e

Please sign in to comment.