drf-iam 0.0.1.post0__tar.gz → 0.0.2__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.
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/PKG-INFO +5 -2
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/drf_iam.egg-info/PKG-INFO +5 -2
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/setup.py +5 -1
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/MANIFEST.in +0 -0
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/README.md +0 -0
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/drf_iam/__init__.py +0 -0
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/drf_iam/admin.py +0 -0
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/drf_iam/apps.py +0 -0
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/drf_iam/migrations/0001_initial.py +0 -0
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/drf_iam/migrations/__init__.py +0 -0
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/drf_iam/models.py +0 -0
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/drf_iam/permissions.py +0 -0
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/drf_iam/tests.py +0 -0
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/drf_iam.egg-info/SOURCES.txt +0 -0
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/drf_iam.egg-info/dependency_links.txt +0 -0
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/drf_iam.egg-info/requires.txt +0 -0
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/drf_iam.egg-info/top_level.txt +0 -0
- {drf_iam-0.0.1.post0 → drf_iam-0.0.2}/setup.cfg +0 -0
@@ -1,10 +1,12 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: drf-iam
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.2
|
4
4
|
Summary: IAM-style roles and permissions for Django Rest Framework
|
5
5
|
Home-page: https://github.com/tushar1328/drf-iam.git
|
6
6
|
Author: Tushar Patel
|
7
7
|
Author-email: tushar.patel@gmail.com
|
8
|
+
Project-URL: Documentation, https://drf-iam.readthedocs.io/en/latest/installation.html
|
9
|
+
Project-URL: Source, https://github.com/tushar1328/drf-iam.git
|
8
10
|
Classifier: Framework :: Django
|
9
11
|
Classifier: Framework :: Django :: 3.2
|
10
12
|
Classifier: Programming Language :: Python :: 3
|
@@ -20,6 +22,7 @@ Dynamic: classifier
|
|
20
22
|
Dynamic: description
|
21
23
|
Dynamic: description-content-type
|
22
24
|
Dynamic: home-page
|
25
|
+
Dynamic: project-url
|
23
26
|
Dynamic: requires-dist
|
24
27
|
Dynamic: requires-python
|
25
28
|
Dynamic: summary
|
@@ -1,10 +1,12 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: drf-iam
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.2
|
4
4
|
Summary: IAM-style roles and permissions for Django Rest Framework
|
5
5
|
Home-page: https://github.com/tushar1328/drf-iam.git
|
6
6
|
Author: Tushar Patel
|
7
7
|
Author-email: tushar.patel@gmail.com
|
8
|
+
Project-URL: Documentation, https://drf-iam.readthedocs.io/en/latest/installation.html
|
9
|
+
Project-URL: Source, https://github.com/tushar1328/drf-iam.git
|
8
10
|
Classifier: Framework :: Django
|
9
11
|
Classifier: Framework :: Django :: 3.2
|
10
12
|
Classifier: Programming Language :: Python :: 3
|
@@ -20,6 +22,7 @@ Dynamic: classifier
|
|
20
22
|
Dynamic: description
|
21
23
|
Dynamic: description-content-type
|
22
24
|
Dynamic: home-page
|
25
|
+
Dynamic: project-url
|
23
26
|
Dynamic: requires-dist
|
24
27
|
Dynamic: requires-python
|
25
28
|
Dynamic: summary
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
2
2
|
|
3
3
|
setup(
|
4
4
|
name='drf-iam',
|
5
|
-
version='0.0.
|
5
|
+
version='0.0.2',
|
6
6
|
packages=find_packages(), # Automatically finds all sub-packages
|
7
7
|
include_package_data=True, # Include non-Python files from MANIFEST.in
|
8
8
|
install_requires=[
|
@@ -15,6 +15,10 @@ setup(
|
|
15
15
|
long_description=open('README.md').read(),
|
16
16
|
long_description_content_type='text/markdown', # Important if using Markdown
|
17
17
|
url='https://github.com/tushar1328/drf-iam.git', # Optional but helpful
|
18
|
+
project_urls={
|
19
|
+
'Documentation': 'https://drf-iam.readthedocs.io/en/latest/installation.html',
|
20
|
+
'Source': 'https://github.com/tushar1328/drf-iam.git',
|
21
|
+
},
|
18
22
|
classifiers=[
|
19
23
|
'Framework :: Django',
|
20
24
|
'Framework :: Django :: 3.2',
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|