Skip to content

Commit

Permalink
Create setup.cfg file and split pyproject.toml file into it.
Browse files Browse the repository at this point in the history
  • Loading branch information
hreikin committed Mar 15, 2023
1 parent 5b16c5d commit b657bea
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 25 deletions.
26 changes: 1 addition & 25 deletions pyproject.toml
@@ -1,27 +1,3 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "streamlit_uploads_library"
version = "0.1.2"
authors = [
{ name="Michael Haslam", email="hreikin@gmail.com" },
]
description = "A simple library or gallery for Streamlit made from widgets."
dependencies = [
"streamlit >= 1.19.0",
"opsdroid-get-image-size >= 0.2.2"
]
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]

[project.urls]
"Homepage" = "https://github.com/hreikin/streamlit-uploads-library"
"Bug Tracker" = "https://github.com/hreikin/streamlit-uploads-library/issues"
build-backend = "setuptools.build_meta"
21 changes: 21 additions & 0 deletions setup.cfg
@@ -0,0 +1,21 @@
[metadata]
name = streamlit_uploads_library
version = 0.1.2
author = Michael Haslam
author_email = hreikin@gmail.com
url = https://github.com/hreikin/streamlit-uploads-library
description = A simple library or gallery for Streamlit made from widgets.
long_description = file: README.md
long_description_content_type = text/markdown
keywords = streamlit, uploads, library, gallery, widgets
license = MIT
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent

[options]
packages = find:
install_requires =
streamlit >= 1.19.0
opsdroid-get-image-size >= 0.2.2

0 comments on commit b657bea

Please sign in to comment.