Skip to content

Commit

Permalink
step (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
vb64 authored Sep 13, 2022
1 parent 0e53747 commit a276df9
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .pypirc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[distutils]
index-servers =
pypi
testpypi

[pypi]
repository = https://upload.pypi.org/legacy/

[testpypi]
repository = https://test.pypi.org/legacy/
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
recursive-include django_admin_filters/templates *
recursive-include django_admin_filters/static *
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ For javascript widget used code from [date-and-time-picker project](https://gith
## Installation

```bash
pip install django-admin-filters
pip install django-admin-list-filters
```

To connect library to your project, add `django_admin_filters` to the `INSTALLED_APPS` list in your `settings.py` file.
Expand Down
2 changes: 1 addition & 1 deletion READMEru.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
## Установка

```bash
pip install django-admin-filters
pip install django-admin-list-filters
```

Для подключения библиотеки к проекту нужно добавить `django_admin_filters` в список `INSTALLED_APPS` в файле `settings.py`.
Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
21 changes: 21 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[metadata]
name = django-admin-list-filters
version = 1.0
author = Vitaly Bogomolov
author_email = mail@vitaly-bogomolov.ru
description = Embedded filters for Django Admin site
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/vb64/django.admin.filters
project_urls =
Bug Tracker = https://github.com/vb64/django.admin.filters/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent

[options]
package_dir =
packages = django_admin_filters
python_requires = >=3.7
include_package_data=True

0 comments on commit a276df9

Please sign in to comment.