Metadata-Version: 2.4
Name: oc-2-python-app
Version: 0.1.0
Summary: A landing page Python app called "StartupX" that runs on Django. It contains a home, about, features, and a contact page.
Author: oc-2
License: MIT License
        
        Copyright (c) 2025 oc-2
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Source, https://github.com/oc-2/python-app
Project-URL: Issues, https://github.com/oc-2/python-app/issues
Keywords: python,django,landing page
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 5.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: asgiref==3.10.0
Requires-Dist: build==1.3.0
Requires-Dist: distlib==0.4.0
Requires-Dist: Django==5.2.8
Requires-Dist: filelock==3.20.0
Requires-Dist: packaging==25.0
Requires-Dist: platformdirs==4.5.0
Requires-Dist: pyproject_hooks==1.2.0
Requires-Dist: setuptools==80.9.0
Requires-Dist: sqlparse==0.5.3
Requires-Dist: wheel==0.45.1
Dynamic: license-file

# python-app

A landing page Python app called "StartupX" that runs on Django. It contains a home, about, features, and a contact page.

### How to use
   1. Clone The Repository
   ```bash
 git clone https://github.com/oc-2/python-app.git && cd python-app
   ```
   2. Create and activate a virtual enviroment
   ```bash
   python3 -m venv virt
source virt/bin/activate   # Linux/macOS
virt\Scripts\activate      # Windows
   ```
   3. Install dependencies
   ```
 pip install -r requirements.txt
   ```
   4. Start the development server
   ```
   python manage.py runserver
   ```
   5. Go to `http://localhost:8000/` server

## Licence

Copyright (c) 2025 oc-2

This software is released under the terms of the BSD License.
See the [LICENSE](LICENSE) file for further information.
