Skip to content

Commit

Permalink
adding setup.py #1
Browse files Browse the repository at this point in the history
  • Loading branch information
avrabyt authored May 23, 2022
1 parent 4833385 commit 8edeaaa
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import setuptools

setuptools.setup(
name="st_speckmol",
version="0.0.1",
author="Avratanu Biswas",
author_email="[email protected]",
description="Streamlit component for for Speck molecule visualization.",
long_description="Streamlit component for visualizing SPECK molecules - https://github.com/wwwtyro/speck",
long_description_content_type="text/plain",
url="https://github.com/avrabyt/Specklit",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires=">=3.6",
install_requires=["streamlit >= 0.63", "ipyspeck==0.6.0",ipywidgets==7.7.0],
)

0 comments on commit 8edeaaa

Please sign in to comment.