-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 776 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
# --- Package info ---
name="study_reminders",
version="1.0",
packages=find_packages(), # Includes the 'study_reminders' package
py_modules=['main'], # Includes main.py as a top-level module
include_package_data=True,
description="A Python package to automate personalized study reminders.",
author="Jørgen Nonstad",
author_email="jorgen.nonstad@gmail.com", # Replace with your email
install_requires=[
'schedule', # Required for scheduler.py
],
# --- Command-line entry point ---
entry_points={
'console_scripts': [
'study_reminders=main:main', # Allows running via `study_reminders` command
],
},
)