-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (43 loc) · 1.43 KB
/
setup.py
File metadata and controls
45 lines (43 loc) · 1.43 KB
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
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
import os
# Baca README dengan encoding UTF-8
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name="streamlit_launcher",
version="2.2.1",
author="Dwi Bakti N Dev",
author_email="dwibakti76@gmail.com",
description="Analisis Date Scient Simple and Instant",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/royhtml",
project_urls={
"Profile": "https://profiledwibaktindev.netlify.app/",
"ich.io": "https://royhtml.itch.io/",
"Facebook": "https://www.facebook.com/Royhtml",
"Webtoons": "https://www.webtoons.com/id/canvas/mariadb-hari-senin/episode-4-coding-championship/viewer?title_no=1065164&episode_no=4",
},
packages=find_packages(exclude=['tests*']),
install_requires=[
"pillow>=8.0",
"pyinstaller>=4.0",
"pyqt5>=5.15",
],
entry_points={
"gui_scripts": [
"streamlit_launcher=streamlit_launcher.cli:main",
],
},
include_package_data=True,
package_data={
"webscan": ["*.ico", "*.png"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)