Skip to content

Commit

Permalink
feat: lisence, readme, add classifiers in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
keshavmohta09 committed Apr 8, 2024
1 parent 0e7bb61 commit 051a1d8
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 1 deletion.
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Keshav Mohta

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.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# dbviews-django

dbviews-django is a Django package designed to simplify the management of database views and materialized views within Django projects. With dbviews-django, you can seamlessly integrate database views into your Django applications, allowing for easier maintenance and management of complex data structures.

## Key Features

- Define database views and materialized views using Django's migration framework.
- Integrate views seamlessly with your existing Django models and queries.
- Easily manage and update views alongside your Django application code.
- Support for both traditional database views and materialized views for improved performance.
- Compatible with Python 3.9 or higher and Django 4.x.

## Usage

Discover how to define and utilize database views and materialized views seamlessly within your Django project.
Expand Down
16 changes: 15 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,27 @@
[tool.poetry]
name = "dbviews-django"
version = "0.1.2"
version = "0.1.3"
description = "Support of database views and materialized views in django web framework."
authors = ["Keshav Mohta <keshavmohta09@gmail.com>"]
maintainers = ["Keshav Mohta <keshavmohta09@gmail.com>"]

readme = "README.md"
packages = [
{ include = "dbviews", from = "src" },
]

license="MIT"
homepage="https://github.com/keshavmohta09/dbviews-django/"

classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Framework :: Django',
]


[tool.poetry.dependencies]
python = ">=3.9"
django = ">=4"
Expand Down

0 comments on commit 051a1d8

Please sign in to comment.