-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 686 Bytes
/
setup.py
File metadata and controls
29 lines (24 loc) · 686 Bytes
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
from setuptools import setup, find_packages
setup(
name="project-generator",
version="0.1.0",
description="A simple project template generator with CLI and GUI",
author="Systemzerodev",
packages=find_packages(),
# 🔥 penting untuk include file non-python
include_package_data=True,
# 🔥 CLI command
entry_points={
"console_scripts": [
"create-project=project_generator.cli:main",
],
},
# opsional tapi bagus
install_requires=[],
python_requires=">=3.8",
# metadata tambahan
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)