simplesitesearch 1.0.0__tar.gz → 1.0.1__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.
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/LICENSE +2 -0
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/MANIFEST.in +2 -0
- {simplesitesearch-1.0.0/simplesitesearch.egg-info → simplesitesearch-1.0.1}/PKG-INFO +16 -19
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/README.md +3 -8
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/pyproject.toml +12 -8
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/setup.cfg +8 -6
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/setup.py +8 -6
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/simplesitesearch/__init__.py +2 -0
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/simplesitesearch/cms_apps.py +2 -0
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/simplesitesearch/templates/simplesitesearch/pagination.html +2 -0
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/simplesitesearch/templates/simplesitesearch/search_results.html +2 -0
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/simplesitesearch/urls.py +2 -0
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/simplesitesearch/views.py +2 -0
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1/simplesitesearch.egg-info}/PKG-INFO +16 -19
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/simplesitesearch.egg-info/SOURCES.txt +0 -0
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/simplesitesearch.egg-info/dependency_links.txt +0 -0
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/simplesitesearch.egg-info/not-zip-safe +0 -0
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/simplesitesearch.egg-info/requires.txt +0 -0
- {simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/simplesitesearch.egg-info/top_level.txt +0 -0
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: simplesitesearch
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary:
|
|
5
|
-
Home-page: https://github.com/
|
|
6
|
-
Author:
|
|
7
|
-
Author-email:
|
|
8
|
-
Maintainer-email:
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: Reptile Simple Site Search django app
|
|
5
|
+
Home-page: https://github.com/reptiletech/simplesitesearch
|
|
6
|
+
Author: Reptile Tech
|
|
7
|
+
Author-email: Reptile Tech <flouis@reptile.tech>
|
|
8
|
+
Maintainer-email: Reptile Tech <flouis@reptile.tech>
|
|
9
9
|
License: MIT
|
|
10
|
-
Project-URL: Homepage, https://github.com/
|
|
11
|
-
Project-URL: Documentation, https://github.com/
|
|
12
|
-
Project-URL: Repository, https://github.com/
|
|
13
|
-
Project-URL: Bug Tracker, https://github.com/
|
|
10
|
+
Project-URL: Homepage, https://github.com/reptiletech/simplesitesearch
|
|
11
|
+
Project-URL: Documentation, https://github.com/reptiletech/simplesitesearch#readme
|
|
12
|
+
Project-URL: Repository, https://github.com/reptiletech/simplesitesearch.git
|
|
13
|
+
Project-URL: Bug Tracker, https://github.com/reptiletech/simplesitesearch/issues
|
|
14
14
|
Keywords: django,search,cms,django-cms
|
|
15
15
|
Classifier: Development Status :: 5 - Production/Stable
|
|
16
16
|
Classifier: Intended Audience :: Developers
|
|
17
17
|
Classifier: License :: OSI Approved :: MIT License
|
|
18
18
|
Classifier: Operating System :: OS Independent
|
|
19
19
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
20
22
|
Classifier: Programming Language :: Python :: 3.8
|
|
21
23
|
Classifier: Programming Language :: Python :: 3.9
|
|
22
24
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -30,7 +32,7 @@ Classifier: Framework :: Django :: 4.2
|
|
|
30
32
|
Classifier: Framework :: Django :: 5.0
|
|
31
33
|
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
32
34
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
33
|
-
Requires-Python: >=3.
|
|
35
|
+
Requires-Python: >=3.6
|
|
34
36
|
Description-Content-Type: text/markdown
|
|
35
37
|
License-File: LICENSE
|
|
36
38
|
Requires-Dist: Django>=3.2
|
|
@@ -212,14 +214,6 @@ python manage.py test simplesitesearch
|
|
|
212
214
|
|
|
213
215
|
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
214
216
|
|
|
215
|
-
## Contributing
|
|
216
|
-
|
|
217
|
-
1. Fork the repository
|
|
218
|
-
2. Create a feature branch
|
|
219
|
-
3. Make your changes
|
|
220
|
-
4. Add tests for your changes
|
|
221
|
-
5. Submit a pull request
|
|
222
|
-
|
|
223
217
|
## Support
|
|
224
218
|
|
|
225
219
|
For support and questions, please open an issue on the [GitHub repository](https://github.com/yourusername/simplesitesearch/issues).
|
|
@@ -232,3 +226,6 @@ For support and questions, please open an issue on the [GitHub repository](https
|
|
|
232
226
|
- Pagination support
|
|
233
227
|
- Multi-language support
|
|
234
228
|
- Basic search functionality
|
|
229
|
+
|
|
230
|
+
### 1.0.1
|
|
231
|
+
- Allow python version 3.6, 3.7
|
|
@@ -169,14 +169,6 @@ python manage.py test simplesitesearch
|
|
|
169
169
|
|
|
170
170
|
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
171
171
|
|
|
172
|
-
## Contributing
|
|
173
|
-
|
|
174
|
-
1. Fork the repository
|
|
175
|
-
2. Create a feature branch
|
|
176
|
-
3. Make your changes
|
|
177
|
-
4. Add tests for your changes
|
|
178
|
-
5. Submit a pull request
|
|
179
|
-
|
|
180
172
|
## Support
|
|
181
173
|
|
|
182
174
|
For support and questions, please open an issue on the [GitHub repository](https://github.com/yourusername/simplesitesearch/issues).
|
|
@@ -189,3 +181,6 @@ For support and questions, please open an issue on the [GitHub repository](https
|
|
|
189
181
|
- Pagination support
|
|
190
182
|
- Multi-language support
|
|
191
183
|
- Basic search functionality
|
|
184
|
+
|
|
185
|
+
### 1.0.1
|
|
186
|
+
- Allow python version 3.6, 3.7
|
|
@@ -5,14 +5,14 @@ build-backend = "setuptools.build_meta"
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "simplesitesearch"
|
|
7
7
|
dynamic = ["version"]
|
|
8
|
-
description = "
|
|
8
|
+
description = "Reptile Simple Site Search django app"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
11
11
|
authors = [
|
|
12
|
-
{name = "
|
|
12
|
+
{name = "Reptile Tech", email = "flouis@reptile.tech"},
|
|
13
13
|
]
|
|
14
14
|
maintainers = [
|
|
15
|
-
{name = "
|
|
15
|
+
{name = "Reptile Tech", email = "flouis@reptile.tech"},
|
|
16
16
|
]
|
|
17
17
|
keywords = ["django", "search", "cms", "django-cms"]
|
|
18
18
|
classifiers = [
|
|
@@ -21,6 +21,8 @@ classifiers = [
|
|
|
21
21
|
"License :: OSI Approved :: MIT License",
|
|
22
22
|
"Operating System :: OS Independent",
|
|
23
23
|
"Programming Language :: Python :: 3",
|
|
24
|
+
"Programming Language :: Python :: 3.6",
|
|
25
|
+
"Programming Language :: Python :: 3.7",
|
|
24
26
|
"Programming Language :: Python :: 3.8",
|
|
25
27
|
"Programming Language :: Python :: 3.9",
|
|
26
28
|
"Programming Language :: Python :: 3.10",
|
|
@@ -35,7 +37,7 @@ classifiers = [
|
|
|
35
37
|
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
|
|
36
38
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
37
39
|
]
|
|
38
|
-
requires-python = ">=3.
|
|
40
|
+
requires-python = ">=3.6"
|
|
39
41
|
dependencies = [
|
|
40
42
|
"Django>=3.2",
|
|
41
43
|
"django-cms>=3.2",
|
|
@@ -43,10 +45,10 @@ dependencies = [
|
|
|
43
45
|
]
|
|
44
46
|
|
|
45
47
|
[project.urls]
|
|
46
|
-
Homepage = "https://github.com/
|
|
47
|
-
Documentation = "https://github.com/
|
|
48
|
-
Repository = "https://github.com/
|
|
49
|
-
"Bug Tracker" = "https://github.com/
|
|
48
|
+
Homepage = "https://github.com/reptiletech/simplesitesearch"
|
|
49
|
+
Documentation = "https://github.com/reptiletech/simplesitesearch#readme"
|
|
50
|
+
Repository = "https://github.com/reptiletech/simplesitesearch.git"
|
|
51
|
+
"Bug Tracker" = "https://github.com/reptiletech/simplesitesearch/issues"
|
|
50
52
|
|
|
51
53
|
[tool.setuptools]
|
|
52
54
|
packages = ["simplesitesearch"]
|
|
@@ -54,3 +56,5 @@ include-package-data = true
|
|
|
54
56
|
|
|
55
57
|
[tool.setuptools.package-data]
|
|
56
58
|
simplesitesearch = ["templates/simplesitesearch/*.html"]
|
|
59
|
+
|
|
60
|
+
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
[metadata]
|
|
2
2
|
name = simplesitesearch
|
|
3
|
-
version = 1.0.
|
|
4
|
-
author =
|
|
5
|
-
author_email =
|
|
6
|
-
description =
|
|
3
|
+
version = 1.0.1
|
|
4
|
+
author = Reptile Tech
|
|
5
|
+
author_email = flouis@reptile.tech
|
|
6
|
+
description = Reptile Simple Site Search django app
|
|
7
7
|
long_description = file: README.md
|
|
8
8
|
long_description_content_type = text/markdown
|
|
9
|
-
url = https://github.com/
|
|
9
|
+
url = https://github.com/reptiletech/simplesitesearch
|
|
10
10
|
license = MIT
|
|
11
11
|
license_files = LICENSE
|
|
12
12
|
classifiers =
|
|
@@ -15,6 +15,8 @@ classifiers =
|
|
|
15
15
|
License :: OSI Approved :: MIT License
|
|
16
16
|
Operating System :: OS Independent
|
|
17
17
|
Programming Language :: Python :: 3
|
|
18
|
+
Programming Language :: Python :: 3.6
|
|
19
|
+
Programming Language :: Python :: 3.7
|
|
18
20
|
Programming Language :: Python :: 3.8
|
|
19
21
|
Programming Language :: Python :: 3.9
|
|
20
22
|
Programming Language :: Python :: 3.10
|
|
@@ -37,7 +39,7 @@ project_urls =
|
|
|
37
39
|
|
|
38
40
|
[options]
|
|
39
41
|
packages = find:
|
|
40
|
-
python_requires = >=3.
|
|
42
|
+
python_requires = >=3.6
|
|
41
43
|
install_requires =
|
|
42
44
|
Django>=3.2
|
|
43
45
|
django-cms>=3.2
|
|
@@ -8,13 +8,13 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name="simplesitesearch",
|
|
11
|
-
version="1.0.
|
|
12
|
-
author="
|
|
13
|
-
author_email="
|
|
14
|
-
description="
|
|
11
|
+
version="1.0.1",
|
|
12
|
+
author="Reptile Tech",
|
|
13
|
+
author_email="flouis@reptile.tech",
|
|
14
|
+
description="Reptile Simple Site Search django app",
|
|
15
15
|
long_description=long_description,
|
|
16
16
|
long_description_content_type="text/markdown",
|
|
17
|
-
url="https://github.com/
|
|
17
|
+
url="https://github.com/reptiletech/simplesitesearch",
|
|
18
18
|
packages=find_packages(),
|
|
19
19
|
classifiers=[
|
|
20
20
|
"Development Status :: 5 - Production/Stable",
|
|
@@ -22,6 +22,8 @@ setup(
|
|
|
22
22
|
"License :: OSI Approved :: MIT License",
|
|
23
23
|
"Operating System :: OS Independent",
|
|
24
24
|
"Programming Language :: Python :: 3",
|
|
25
|
+
"Programming Language :: Python :: 3.6",
|
|
26
|
+
"Programming Language :: Python :: 3.7",
|
|
25
27
|
"Programming Language :: Python :: 3.8",
|
|
26
28
|
"Programming Language :: Python :: 3.9",
|
|
27
29
|
"Programming Language :: Python :: 3.10",
|
|
@@ -36,7 +38,7 @@ setup(
|
|
|
36
38
|
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
|
|
37
39
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
38
40
|
],
|
|
39
|
-
python_requires=">=3.
|
|
41
|
+
python_requires=">=3.6",
|
|
40
42
|
install_requires=[
|
|
41
43
|
"Django>=3.2",
|
|
42
44
|
"django-cms>=3.2",
|
|
@@ -1,22 +1,24 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: simplesitesearch
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary:
|
|
5
|
-
Home-page: https://github.com/
|
|
6
|
-
Author:
|
|
7
|
-
Author-email:
|
|
8
|
-
Maintainer-email:
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: Reptile Simple Site Search django app
|
|
5
|
+
Home-page: https://github.com/reptiletech/simplesitesearch
|
|
6
|
+
Author: Reptile Tech
|
|
7
|
+
Author-email: Reptile Tech <flouis@reptile.tech>
|
|
8
|
+
Maintainer-email: Reptile Tech <flouis@reptile.tech>
|
|
9
9
|
License: MIT
|
|
10
|
-
Project-URL: Homepage, https://github.com/
|
|
11
|
-
Project-URL: Documentation, https://github.com/
|
|
12
|
-
Project-URL: Repository, https://github.com/
|
|
13
|
-
Project-URL: Bug Tracker, https://github.com/
|
|
10
|
+
Project-URL: Homepage, https://github.com/reptiletech/simplesitesearch
|
|
11
|
+
Project-URL: Documentation, https://github.com/reptiletech/simplesitesearch#readme
|
|
12
|
+
Project-URL: Repository, https://github.com/reptiletech/simplesitesearch.git
|
|
13
|
+
Project-URL: Bug Tracker, https://github.com/reptiletech/simplesitesearch/issues
|
|
14
14
|
Keywords: django,search,cms,django-cms
|
|
15
15
|
Classifier: Development Status :: 5 - Production/Stable
|
|
16
16
|
Classifier: Intended Audience :: Developers
|
|
17
17
|
Classifier: License :: OSI Approved :: MIT License
|
|
18
18
|
Classifier: Operating System :: OS Independent
|
|
19
19
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
20
22
|
Classifier: Programming Language :: Python :: 3.8
|
|
21
23
|
Classifier: Programming Language :: Python :: 3.9
|
|
22
24
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -30,7 +32,7 @@ Classifier: Framework :: Django :: 4.2
|
|
|
30
32
|
Classifier: Framework :: Django :: 5.0
|
|
31
33
|
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
|
|
32
34
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
33
|
-
Requires-Python: >=3.
|
|
35
|
+
Requires-Python: >=3.6
|
|
34
36
|
Description-Content-Type: text/markdown
|
|
35
37
|
License-File: LICENSE
|
|
36
38
|
Requires-Dist: Django>=3.2
|
|
@@ -212,14 +214,6 @@ python manage.py test simplesitesearch
|
|
|
212
214
|
|
|
213
215
|
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
214
216
|
|
|
215
|
-
## Contributing
|
|
216
|
-
|
|
217
|
-
1. Fork the repository
|
|
218
|
-
2. Create a feature branch
|
|
219
|
-
3. Make your changes
|
|
220
|
-
4. Add tests for your changes
|
|
221
|
-
5. Submit a pull request
|
|
222
|
-
|
|
223
217
|
## Support
|
|
224
218
|
|
|
225
219
|
For support and questions, please open an issue on the [GitHub repository](https://github.com/yourusername/simplesitesearch/issues).
|
|
@@ -232,3 +226,6 @@ For support and questions, please open an issue on the [GitHub repository](https
|
|
|
232
226
|
- Pagination support
|
|
233
227
|
- Multi-language support
|
|
234
228
|
- Basic search functionality
|
|
229
|
+
|
|
230
|
+
### 1.0.1
|
|
231
|
+
- Allow python version 3.6, 3.7
|
|
File without changes
|
{simplesitesearch-1.0.0 → simplesitesearch-1.0.1}/simplesitesearch.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|