aranda 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,10 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
@@ -0,0 +1 @@
1
+ 3.13
aranda-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: aranda
3
+ Version: 0.1.0
4
+ Summary: Redirects to my personal website
5
+ Project-URL: Homepage, https://your-website.com
6
+ Project-URL: Repository, https://github.com/yourusername/aranda
7
+ Author-email: Your Name <your.email@example.com>
8
+ License: MIT
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Intended Audience :: End Users/Desktop
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Requires-Python: >=3.8
aranda-0.1.0/README.md ADDED
File without changes
@@ -0,0 +1,32 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "aranda"
7
+ version = "0.1.0"
8
+ description = "Redirects to my personal website"
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ authors = [
12
+ { name = "Your Name", email = "your.email@example.com" }
13
+ ]
14
+ classifiers = [
15
+ "Development Status :: 4 - Beta",
16
+ "Intended Audience :: End Users/Desktop",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3.8",
20
+ "Programming Language :: Python :: 3.9",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ ]
25
+ requires-python = ">=3.8"
26
+
27
+ [project.urls]
28
+ Homepage = "https://your-website.com"
29
+ Repository = "https://github.com/yourusername/aranda"
30
+
31
+ [project.scripts]
32
+ aranda = "aranda:main"
@@ -0,0 +1,24 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ aranda - Personal website redirector
4
+ """
5
+ import webbrowser
6
+ import sys
7
+
8
+ __version__ = "0.1.0"
9
+
10
+
11
+ def main():
12
+ """Open personal website in default browser"""
13
+ website_url = "https://antoara.com" # Replace with your actual website URL
14
+
15
+ try:
16
+ print(f"Opening {website_url} in your default browser...")
17
+ webbrowser.open(website_url)
18
+ except Exception as e:
19
+ print(f"Error opening website: {e}", file=sys.stderr)
20
+ sys.exit(1)
21
+
22
+
23
+ if __name__ == "__main__":
24
+ main()