-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- coding: utf-8 -*-
import setuptools
import os
import sys
# get local readme
readmefile = os.path.join(os.path.dirname(__file__), "README.md")
with open(readmefile) as f:
readme = f.read()
# get version number from the package __init__.py file
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "streamlit_doubutsushogi")))
from streamlit_doubutsushogi import __version__ as version
setuptools.setup(
name="streamlit-doubutsushogi",
version=version,
author='Kota Mori',
author_email='[email protected]',
description="A streamlit custom component for doubutsushogi (animal chess) game",
long_description=readme,
long_description_content_type="text/markdown",
url="",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires=">=3.6",
install_requires=[
# By definition, a Custom Component depends on Streamlit.
# If your component has other Python dependencies, list
# them here.
"streamlit >= 0.63",
"doubutsushogi"
],
)