django-devapp 0.2.0__tar.gz → 0.3.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.
@@ -1,30 +1,28 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: django-devapp
3
- Version: 0.2.0
4
- Summary: Basic tools to manage a django application outside of a Django project.
5
- Home-page: https://github.com/raratiru/django-devapp
3
+ Version: 0.3.0
4
+ Summary: Basic tools to manage a django application outside of a Django project
5
+ License: BSD-3-Clause License
6
6
  Author: George Tantiras
7
- License: BSD 3-Clause License
8
- Project-URL: Bug Tracker, https://github.com/raratiru/django-devapp/issues
9
- Platform: UNKNOWN
7
+ Requires-Python: >=3.10
10
8
  Classifier: Development Status :: 3 - Alpha
11
9
  Classifier: Environment :: Web Environment
12
10
  Classifier: Framework :: Django
13
11
  Classifier: Intended Audience :: Developers
12
+ Classifier: License :: Other/Proprietary License
14
13
  Classifier: Programming Language :: Python :: 3
15
- Classifier: Programming Language :: Python :: 3.7
16
- Classifier: Programming Language :: Python :: 3.8
17
- Classifier: Programming Language :: Python :: 3.9
18
14
  Classifier: Programming Language :: Python :: 3.10
19
- Classifier: License :: OSI Approved :: BSD License
20
- Classifier: Operating System :: OS Independent
21
- Classifier: Natural Language :: English
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
22
18
  Classifier: Topic :: Internet :: WWW/HTTP
23
- Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
24
- Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
25
- Requires-Python: >=3.7
19
+ Requires-Dist: black (>=25.1.0,<26.0.0)
20
+ Requires-Dist: build (>=1.2.2.post1,<2.0.0)
21
+ Requires-Dist: click (>=8.1.8,<9.0.0)
22
+ Requires-Dist: django (>=5.1.6,<6.0.0)
23
+ Requires-Dist: ipython (>=8.32.0,<9.0.0)
24
+ Requires-Dist: twine (>=6.1.0,<7.0.0)
26
25
  Description-Content-Type: text/markdown
27
- License-File: LICENSE
28
26
 
29
27
  # Django DevApp
30
28
  Basic tools to manage a django application outside of a Django project.
@@ -33,6 +31,15 @@ Inspired from:
33
31
  * ["How to Write an Installable Django App"](https://realpython.com/installable-django-app/#bootstrapping-django-outside-of-a-project).
34
32
  * ["Packaging Python Projects"](https://packaging.python.org/en/latest/tutorials/packaging-projects/)
35
33
 
34
+ # Depends on:
35
+
36
+ * black
37
+ * build
38
+ * click
39
+ * django
40
+ * ipython
41
+ * twine
42
+
36
43
  # Help
37
44
  ```
38
45
  $ dev --help
@@ -81,4 +88,3 @@ $ tree
81
88
  └── setup.cfg
82
89
  ```
83
90
 
84
-
@@ -5,6 +5,15 @@ Inspired from:
5
5
  * ["How to Write an Installable Django App"](https://realpython.com/installable-django-app/#bootstrapping-django-outside-of-a-project).
6
6
  * ["Packaging Python Projects"](https://packaging.python.org/en/latest/tutorials/packaging-projects/)
7
7
 
8
+ # Depends on:
9
+
10
+ * black
11
+ * build
12
+ * click
13
+ * django
14
+ * ipython
15
+ * twine
16
+
8
17
  # Help
9
18
  ```
10
19
  $ dev --help
@@ -0,0 +1,36 @@
1
+ [project]
2
+ name = "django-devapp"
3
+ version = "0.3.0"
4
+ description = "Basic tools to manage a django application outside of a Django project"
5
+ authors = [
6
+ {name = "George Tantiras"}
7
+ ]
8
+ license = {text = "BSD-3-Clause License"}
9
+ dynamic = [ "classifiers" ]
10
+ readme = "README.md"
11
+ requires-python = ">=3.10"
12
+ dependencies = [
13
+ "django (>=5.1.6,<6.0.0)",
14
+ "black (>=25.1.0,<26.0.0)",
15
+ "click (>=8.1.8,<9.0.0)",
16
+ "ipython (>=8.32.0,<9.0.0)",
17
+ "build (>=1.2.2.post1,<2.0.0)",
18
+ "twine (>=6.1.0,<7.0.0)"
19
+ ]
20
+
21
+ [build-system]
22
+ requires = ["poetry-core>=2.0.0,<3.0.0"]
23
+ build-backend = "poetry.core.masonry.api"
24
+
25
+ [tool.poetry]
26
+ classifiers = [
27
+ "Development Status :: 3 - Alpha",
28
+ "Environment :: Web Environment",
29
+ "Framework :: Django",
30
+ "Intended Audience :: Developers",
31
+ "Topic :: Internet :: WWW/HTTP",
32
+ ]
33
+ packages = [{include = "src/dev"}]
34
+
35
+ [project.scripts]
36
+ dev = "dev.boot:control"
@@ -1,6 +0,0 @@
1
- [build-system]
2
- requires = [
3
- "setuptools>=42",
4
- "wheel"
5
- ]
6
- build-backend = "setuptools.build_meta"
@@ -1,52 +0,0 @@
1
- [metadata]
2
- name = django-devapp
3
- version = 0.2.0
4
- author = George Tantiras
5
- description = Basic tools to manage a django application outside of a Django project.
6
- license = BSD 3-Clause License
7
- long_description = file: README.md
8
- long_description_content_type = text/markdown
9
- url = https://github.com/raratiru/django-devapp
10
- project_urls =
11
- Bug Tracker = https://github.com/raratiru/django-devapp/issues
12
- classifiers =
13
- Development Status :: 3 - Alpha
14
- Environment :: Web Environment
15
- Framework :: Django
16
- Intended Audience :: Developers
17
- Programming Language :: Python :: 3
18
- Programming Language :: Python :: 3.7
19
- Programming Language :: Python :: 3.8
20
- Programming Language :: Python :: 3.9
21
- Programming Language :: Python :: 3.10
22
- License :: OSI Approved :: BSD License
23
- Operating System :: OS Independent
24
- Natural Language :: English
25
- Topic :: Internet :: WWW/HTTP
26
- Topic :: Internet :: WWW/HTTP :: Dynamic Content
27
- Topic :: Internet :: WWW/HTTP :: Site Management
28
-
29
- [options]
30
- package_dir =
31
- = src
32
- packages = find:
33
- python_requires = >=3.7
34
- install_requires =
35
- black
36
- build
37
- click
38
- django
39
- ipython
40
- twine
41
-
42
- [options.packages.find]
43
- where = src
44
-
45
- [options.entry_points]
46
- console_scripts =
47
- dev = dev.boot:control
48
-
49
- [egg_info]
50
- tag_build =
51
- tag_date = 0
52
-
@@ -1,84 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: django-devapp
3
- Version: 0.2.0
4
- Summary: Basic tools to manage a django application outside of a Django project.
5
- Home-page: https://github.com/raratiru/django-devapp
6
- Author: George Tantiras
7
- License: BSD 3-Clause License
8
- Project-URL: Bug Tracker, https://github.com/raratiru/django-devapp/issues
9
- Platform: UNKNOWN
10
- Classifier: Development Status :: 3 - Alpha
11
- Classifier: Environment :: Web Environment
12
- Classifier: Framework :: Django
13
- Classifier: Intended Audience :: Developers
14
- Classifier: Programming Language :: Python :: 3
15
- Classifier: Programming Language :: Python :: 3.7
16
- Classifier: Programming Language :: Python :: 3.8
17
- Classifier: Programming Language :: Python :: 3.9
18
- Classifier: Programming Language :: Python :: 3.10
19
- Classifier: License :: OSI Approved :: BSD License
20
- Classifier: Operating System :: OS Independent
21
- Classifier: Natural Language :: English
22
- Classifier: Topic :: Internet :: WWW/HTTP
23
- Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
24
- Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
25
- Requires-Python: >=3.7
26
- Description-Content-Type: text/markdown
27
- License-File: LICENSE
28
-
29
- # Django DevApp
30
- Basic tools to manage a django application outside of a Django project.
31
-
32
- Inspired from:
33
- * ["How to Write an Installable Django App"](https://realpython.com/installable-django-app/#bootstrapping-django-outside-of-a-project).
34
- * ["Packaging Python Projects"](https://packaging.python.org/en/latest/tutorials/packaging-projects/)
35
-
36
- # Help
37
- ```
38
- $ dev --help
39
- Usage: dev [OPTIONS]
40
-
41
- Options:
42
- -a Create Application
43
- -b Run Black [default: black]
44
- -bb Build Application
45
- -m Make Migrations
46
- -M Migrate
47
- -n TEXT The name of the application or DEVAPP_NAME env variable.
48
- [required]
49
- -pp Upload to Pypi
50
- -s Run Django Shell
51
- --help Show this message and exit.
52
-
53
- ```
54
- # Example
55
- ```
56
- $ tree
57
- .
58
- ├── LICENSE
59
- ├── pyproject.toml
60
- ├── README.md
61
- └── setup.cfg
62
-
63
- $ export DEVAPP_NAME=app
64
- $ dev -a
65
-
66
- $ tree
67
- .
68
- ├── db.sqlite3
69
- ├── LICENSE
70
- ├── pyproject.toml
71
- ├── app
72
- │   ├── admin.py
73
- │   ├── apps.py
74
- │   ├── __init__.py
75
- │   ├── migrations
76
- │   │   └── __init__.py
77
- │   ├── models.py
78
- │   ├── tests.py
79
- │   └── views.py
80
- ├── README.md
81
- └── setup.cfg
82
- ```
83
-
84
-
@@ -1,12 +0,0 @@
1
- LICENSE
2
- README.md
3
- pyproject.toml
4
- setup.cfg
5
- src/dev/__init__.py
6
- src/dev/boot.py
7
- src/django_devapp.egg-info/PKG-INFO
8
- src/django_devapp.egg-info/SOURCES.txt
9
- src/django_devapp.egg-info/dependency_links.txt
10
- src/django_devapp.egg-info/entry_points.txt
11
- src/django_devapp.egg-info/requires.txt
12
- src/django_devapp.egg-info/top_level.txt
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- dev = dev.boot:control
3
-
@@ -1,6 +0,0 @@
1
- black
2
- build
3
- click
4
- django
5
- ipython
6
- twine
File without changes