-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 874 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 874 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
30
31
#!/usr/bin/env python3
"""
Setup script for Personal Diary application.
"""
from setuptools import setup, find_packages
setup(
name="personal-diary",
version="1.0.0",
description="A secure personal diary application with encryption",
author="Sarthak",
author_email="your.email@example.com", # Update with your email
packages=find_packages(),
install_requires=[
"cryptography",
],
entry_points={
"console_scripts": [
"personal-diary=diary_app:main",
],
},
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Office/Business :: News/Diary",
],
)