File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414
1515\. pytest_cache /
1616.tox /
17+ Pipfile *
Original file line number Diff line number Diff line change 11language : python
22matrix :
33 include :
4- - os : linux
5- dist : trusty
6- sudo : true
7- python : 2.7
84 - os : linux
95 dist : trusty
106 sudo : true
Original file line number Diff line number Diff line change 1+ MODULE_PATH =./bestnewmusic
2+
3+ clean-pyc :
4+ find . -name ' *.pyc' -exec rm -f {} +
5+ find . -name ' *.pyo' -exec rm -f {} +
6+ find . -name ' *~' -exec rm -f {} +
7+ find . -name ' __pycache__' -exec rm -rf {} +
8+
9+ clean-build :
10+ rm -rf build/
11+ rm -rf dist/
12+ rm -rf * .egg-info
13+
14+ isort :
15+ sh -c " isort --skip-glob=.tox --recursive --balanced --use-parentheses --line-width=79 . "
16+
17+ lint :
18+ flake8 --exclude=.tox $(MODULE_PATH )
19+
20+ test : clean-pyc
21+ tox
22+
23+ build : clean-build
24+ python3 setup.py sdist
25+ python3 setup.py bdist_wheel --universal
26+
27+ release : build
28+ twine upload dist/*
Original file line number Diff line number Diff line change 1111
1212setup (
1313 name = "bestnewmusic" ,
14- description = "View editor selections from music review sites in the terminal" ,
14+ description = "View music reviews and weekly radio charts in the terminal" ,
1515 long_description = long_description ,
1616 long_description_content_type = "text/markdown" ,
1717 url = "https://github.com/ddbourgin/bestnewmusic" ,
18- version = "0.4" ,
18+ version = "0.4.1 " ,
1919 author = "David Bourgin" ,
2020 author_email = "ddbourgin@gmail.com" ,
2121 license = "MIT" ,
3434 "Development Status :: 3 - Alpha" ,
3535 "License :: OSI Approved :: MIT License" ,
3636 "Environment :: Console" ,
37- "Programming Language :: Python :: 2.7" ,
3837 "Programming Language :: Python :: 3" ,
3938 "Programming Language :: Python :: 3.4" ,
4039 "Programming Language :: Python :: 3.5" ,
You can’t perform that action at this time.
0 commit comments