structure-aram 0.1.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.
File without changes
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: structure_aram
3
+ Version: 0.1.0
4
+ Summary: Un petit package Django qui cree des app
5
+ Author: ynaffit_aes
6
+ Author-email: aramsamb02@gmail.com
7
+ License: MIT
8
+ Classifier: Environment :: Web Environment
9
+ Classifier: Framework :: Django
10
+ Classifier: Framework :: Django :: 4.0
11
+ Classifier: Framework :: Django :: 5.0
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Topic :: Internet :: WWW/HTTP
17
+ Description-Content-Type: text/markdown
18
+ Requires-Dist: django>=4.0
19
+ Dynamic: author
20
+ Dynamic: author-email
21
+ Dynamic: classifier
22
+ Dynamic: description-content-type
23
+ Dynamic: license
24
+ Dynamic: requires-dist
25
+ Dynamic: summary
File without changes
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,35 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='structure_aram',
5
+ version='0.1.0',
6
+ packages=find_packages(),
7
+ include_package_data=True,
8
+ license='MIT',
9
+ description='Un petit package Django qui cree des app ',
10
+ long_description=open('README.md', encoding='utf-8').read(),
11
+ long_description_content_type='text/markdown',
12
+ author='ynaffit_aes',
13
+ author_email='aramsamb02@gmail.com',
14
+ classifiers=[
15
+ 'Environment :: Web Environment',
16
+ 'Framework :: Django',
17
+ 'Framework :: Django :: 4.0',
18
+ 'Framework :: Django :: 5.0',
19
+ 'Intended Audience :: Developers',
20
+ 'License :: OSI Approved :: MIT License',
21
+ 'Programming Language :: Python',
22
+ 'Programming Language :: Python :: 3',
23
+ 'Topic :: Internet :: WWW/HTTP',
24
+ ],
25
+ install_requires=[
26
+ 'django>=4.0',
27
+ ],
28
+
29
+ entry_points={
30
+ 'console_scripts':[
31
+ 'generate-app = structure_aram.cli:main',
32
+ ]
33
+ }
34
+
35
+ )
File without changes
@@ -0,0 +1,3 @@
1
+ from django.contrib import admin
2
+
3
+ # Register your models here.
@@ -0,0 +1,6 @@
1
+ from django.apps import AppConfig
2
+
3
+
4
+ class StructureAramConfig(AppConfig):
5
+ default_auto_field = 'django.db.models.BigAutoField'
6
+ name = 'structure_aram'
@@ -0,0 +1,3 @@
1
+ from django.db import models
2
+
3
+ # Create your models here.
@@ -0,0 +1,3 @@
1
+ from django.test import TestCase
2
+
3
+ # Create your tests here.
@@ -0,0 +1,3 @@
1
+ from django.shortcuts import render
2
+
3
+ # Create your views here.
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: structure_aram
3
+ Version: 0.1.0
4
+ Summary: Un petit package Django qui cree des app
5
+ Author: ynaffit_aes
6
+ Author-email: aramsamb02@gmail.com
7
+ License: MIT
8
+ Classifier: Environment :: Web Environment
9
+ Classifier: Framework :: Django
10
+ Classifier: Framework :: Django :: 4.0
11
+ Classifier: Framework :: Django :: 5.0
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Topic :: Internet :: WWW/HTTP
17
+ Description-Content-Type: text/markdown
18
+ Requires-Dist: django>=4.0
19
+ Dynamic: author
20
+ Dynamic: author-email
21
+ Dynamic: classifier
22
+ Dynamic: description-content-type
23
+ Dynamic: license
24
+ Dynamic: requires-dist
25
+ Dynamic: summary
@@ -0,0 +1,16 @@
1
+ MANIFEST.in
2
+ README.md
3
+ setup.py
4
+ structure_aram/__init__.py
5
+ structure_aram/admin.py
6
+ structure_aram/apps.py
7
+ structure_aram/models.py
8
+ structure_aram/tests.py
9
+ structure_aram/views.py
10
+ structure_aram.egg-info/PKG-INFO
11
+ structure_aram.egg-info/SOURCES.txt
12
+ structure_aram.egg-info/dependency_links.txt
13
+ structure_aram.egg-info/entry_points.txt
14
+ structure_aram.egg-info/requires.txt
15
+ structure_aram.egg-info/top_level.txt
16
+ structure_aram/migrations/__init__.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ generate-app = structure_aram.cli:main
@@ -0,0 +1 @@
1
+ django>=4.0
@@ -0,0 +1 @@
1
+ structure_aram