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

Update README.md #374

Open
wants to merge 4 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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ pyGrams.py has been developed to work on both Windows and MacOS. To install:
```

This will install all the libraries and then download their required datasets (namely NLTK's data). Once installed,
setup will run some tests. If the tests pass, the app is ready to run. If any of the tests fail, please email [[email protected]](mailto:[email protected]) with a screenshot of the failure so that we may get back to you, or alternatively open a [GitHub issue here](https://github.com/datasciencecampus/pyGrams/issues).
setup will run some tests. If the tests pass, the app is ready to run. If any of the tests fail, please
open a [GitHub issue here](https://github.com/datasciencecampus/pyGrams/issues).

### System Performance

Expand Down
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ test_script:
- cd tests
- pytest --cov-report term --cov-report xml --cov=../ ./

after_test:
- ps: |
$env:PATH = 'C:\msys64\usr\bin;' + $env:PATH
Invoke-WebRequest -Uri 'https://codecov.io/bash' -OutFile codecov.sh
bash codecov.sh -f "coverage.xml"
#after_test:
# - ps: |
# $env:PATH = 'C:\msys64\usr\bin;' + $env:PATH
# Invoke-WebRequest -Uri 'https://codecov.io/bash' -OutFile codecov.sh
# bash codecov.sh -f "coverage.xml"
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,12 @@ def setup_package():
'Programming Language :: Python :: 3.6',
],

install_requires=['matplotlib', 'numpy', 'scipy==1.2.1', 'wordcloud', 'pandas', 'tqdm', 'nltk', 'scikit-learn',
'xlrd', 'python-Levenshtein', 'gensim==3.4.0', 'statsmodels', 'keras', 'tensorflow',
'keras_tqdm', 'patsy', 'humanfriendly', 'psutil', 'jinja2', 'urllib3==1.22'],
extras_require={'test': ['beautifulsoup4', 'pytest']},
install_requires=['matplotlib==3.1.1', 'numpy==1.17.1', 'scipy==1.2.1', 'wordcloud==1.5.0', 'pandas==0.25.1',
'tqdm==4.35.0', 'nltk==3.4.5', 'scikit-learn==0.21.3', 'xlrd==1.2.0',
'python-Levenshtein==0.12.0', 'gensim==3.4.0', 'statsmodels==0.10.1', 'keras==2.2.5',
'tensorflow==1.14.0', 'keras_tqdm==2.0.1', 'patsy==0.5.1', 'humanfriendly==4.18',
'psutil==5.6.3', 'jinja2==2.10.1', 'urllib3==1.22'],
extras_require={'test': ['beautifulsoup4==4.8.0', 'pytest==5.0.1']},
python_requires='>=3.6',
cmdclass={
'install': CustomInstaller,
Expand Down