Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
snehankekre committed Sep 27, 2023
1 parent 7d545cd commit 07c1393
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
- name: Lint with ruff
run: |
# stop the build if there are Python syntax errors or undefined names
ruff --format=github --select=E9,F63,F7,F82 --target-version=py37 .
ruff --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
# default set of ruff rules with GitHub Annotations
ruff --format=github --target-version=py37 .
ruff --output-format=github --target-version=py37 .
- name: Check types with mypy
run: |
mypy --ignore-missing-imports .
Expand Down
14 changes: 10 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,23 @@
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()

NAME = "streamlit-d3graph"

VERSION = "1.0.3"

INSTALL_REQUIRES = ["d3graph>=2.4.10", "streamlit", "seaborn"]

setuptools.setup(
name="streamlit-d3graph",
version="1.0.3",
name=NAME,
version=VERSION,
author="Snehan Kekre",
author_email="[email protected]",
description="A simple component to display d3graph network graphs in Streamlit apps.",
description="A simple component to display d3graph network graphs in Streamlit apps.", # noqa: E501
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/snehankekre/streamlit-d3graph",
install_requires=["d3graph>=2.4.10", "streamlit", "seaborn"],
install_requires=INSTALL_REQUIRES,
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
Expand Down

0 comments on commit 07c1393

Please sign in to comment.