-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
22 lines (21 loc) · 815 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
# read the contents of your README file
with open("README.md", "r", encoding='utf8') as fh:
long_description = fh.read()
exec(open('st_speckmol/version.py').read())
setuptools.setup(
name="st_speckmol",
version=__version__,
author="Avratanu Biswas",
author_email="[email protected]",
description="Streamlit component for for Speck molecule visualization.",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/avrabyt/Specklit",
# url = "https://github.com/avrabyt/st-speckmol/tree/dev0.0.5.2",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires=">=3.6",
install_requires=["streamlit >= 0.63", "ipyspeck==0.6.1", "ipywidgets==7.6.3"],
)