-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ae5afe7
commit d7419c2
Showing
5 changed files
with
61 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,3 +33,10 @@ jobs: | |
run: | | ||
python setup.py sdist bdist_wheel | ||
twine upload dist/* | ||
- name: publish-to-conda | ||
uses: fcakyon/[email protected] | ||
with: | ||
subdir: 'conda' | ||
anacondatoken: ${{ secrets.ANACONDA_TOKEN }} | ||
platforms: 'win osx linux' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
python: | ||
- 3.6 | ||
- 3.7 | ||
- 3.8 | ||
- 3.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{% set name = "app-store-reviews-reader" %} | ||
{% set data = load_setup_py_data() %} | ||
|
||
|
||
package: | ||
name: "{{ name|lower }}" | ||
version: "{{ data['version'] }}" | ||
|
||
source: | ||
path: .. | ||
|
||
build: | ||
number: 0 | ||
script: "{{ PYTHON }} setup.py install --single-version-externally-managed --record=record.txt" | ||
|
||
requirements: | ||
build: | ||
- python | ||
- feedparser | ||
- requests | ||
run: | ||
- python | ||
- feedparser | ||
- requests | ||
|
||
test: | ||
requires: | ||
- pytest | ||
|
||
about: | ||
home: "{{ data[ 'url' ] }}" | ||
license: "{{ data[ 'license' ] }}" | ||
license_file: LICENSE | ||
summary: "{{ data[ 'description' ] }}" | ||
description: "{{ data[ 'description' ] }}" | ||
dev_url: "{{ data[ 'url' ] }}" | ||
doc_url: "{{ data[ 'url' ] }}" | ||
doc_source_url: https://github.com/lalitpagaria/app_store_reviews_reader/blob/master/README.md | ||
|
||
extra: | ||
recipe-maintainers: | ||
- lalitpagaria |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ def get_dependency_links(filename): | |
|
||
setup( | ||
name="app-store-reviews-reader", | ||
version="1.0", | ||
version="1.1", | ||
author="Lalit Pagaria", | ||
author_email="[email protected]", | ||
description="To fetch app store reviews from publicly available RSS feeds", | ||
|