Skip to content

Commit 21dcfb8

Browse files
authored
Start initial release (#53)
* Start initial release * Disable unit tests (since there aren't any yet) * Add long_description * Roll back version
1 parent 3f7fe40 commit 21dcfb8

File tree

9 files changed

+9
-178
lines changed

9 files changed

+9
-178
lines changed

.github/workflows/pytest.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Python package
33
on:
44
workflow_dispatch:
55
push:
6-
branches: ["main"]
6+
branches: ["main", "rc-*"]
77
pull_request:
88
release:
99
types: [published]
@@ -36,9 +36,9 @@ jobs:
3636
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
3737
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3838
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
39-
- name: Run unit tests
40-
run: |
41-
make test
39+
#- name: Run unit tests
40+
# run: |
41+
# make test
4242

4343
deploy:
4444
name: "Deploy to PyPI"

AUTHORS.rst

Lines changed: 0 additions & 13 deletions
This file was deleted.

CONTRIBUTING.rst

Lines changed: 0 additions & 128 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021, Carson Sievert
3+
Copyright (c) 2022 RStudio, PBC
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Render [ipywidgets](https://ipywidgets.readthedocs.io/en/stable/) inside a
77
## Installation
88

99
```sh
10-
pip install shinywidgets --extra-index-url=https://pyshiny.netlify.app/pypi
10+
pip install shinywidgets
1111
```
1212

1313
## Overview

setup.cfg

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ author = Carson Sievert
55
author_email = carson@rstudio.com
66
url = https://github.com/rstudio/py-shinywidgets
77
description = Render ipywidgets in Shiny applications
8+
long_description = file: README.md
9+
long_description_content_type = text/markdown
810
license = MIT
911
license_file = LICENSE
1012
platforms = any
@@ -17,10 +19,6 @@ classifiers =
1719
Programming Language :: Python :: 3.8
1820
Programming Language :: Python :: 3.9
1921
Programming Language :: Python :: 3.10
20-
project_urls =
21-
Bug Tracker = https://github.com/rstudio/py-shinywidgets/issues
22-
Documentation = https://github.com/rstudio/py-shinywidgets/
23-
Source Code = https://github.com/rstudio/py-shinywidgets/
2422

2523

2624
[options]

shinywidgets/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = """Carson Sievert"""
44
__email__ = "carson@rstudio.com"
5-
__version__ = "0.1.0.9003"
5+
__version__ = "0.1.1"
66

77

88
from ._shinywidgets import output_widget, register_widget, render_widget, reactive_read

tests/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

tox.ini

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)