Skip to content

Commit

Permalink
Merge pull request #53 from shlomiLan/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
mergify[bot] committed Aug 2, 2019
2 parents df7ce83 + 251656f commit 9a85baf
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 18 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
dist
.cache/
build/
tvsort_sl.egg-info/

# config files
/tvsort_sl/settings/local.yml
Expand Down
13 changes: 0 additions & 13 deletions .pre-commit-config.yaml

This file was deleted.

13 changes: 12 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ environment:
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- ECHO "Filesystem root:1"
- ECHO "Filesystem root:"
- ps: "ls \"C:/\""

- ECHO "Installed SDKs:"
Expand Down Expand Up @@ -50,11 +50,22 @@ install:

- "mkdir logs"

- "%PYTHON%\\python.exe -m pip install wheel"

test_script:
- "cd tvsort_sl"
- "coverage run -m pytest"
- "codecov"
- "cd .."
- "python -m tvsort_sl.app "

after_test:
# This step builds your wheels.
- "%PYTHON%\\python.exe setup.py bdist_wheel"

artifacts:
# bdist_wheel puts your built wheel in the dist directory
- path: dist\*

deploy_script:
- python setup.py sdist bdist_wheel upload
2 changes: 1 addition & 1 deletion dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ python_http_client==3.1.0
-r requirements.txt

invoke==1.2.0
pre-commit==1.17.0
wheel==0.33.4
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
from distutils.core import setup
from setuptools import setup


setup(
name='tvsort_sl',
packages=['tvsort_sl'],
version='1.0.2',
description='Sort movies and TV-shows files',
long_description=open('README.rst').read(),
long_description=open('readme.md').read(),
author='Shlomi Lanton',
author_email='shlomilanton@gmail.com',
url='https://github.com/shlomiLan/tvsort_sl',
download_url='https://github.com/shlomiLan/tvsort_sl/archive/0.1.zip',
keywords=['sort', 'tv', 'show', 'movie', 'KODI', 'XBMC'],
keywords=['sort', 'tv', 'show', 'movie', 'KODI', 'XBM1C'],
classifiers=[],
setup_requires=['wheel']
)

0 comments on commit 9a85baf

Please sign in to comment.