Skip to content

Commit f690cdb

Browse files
authored
Update MANIFEST.in (#83)
* update manifest file * update setup.py
1 parent e823505 commit f690cdb

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

MANIFEST.in

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
1-
include LICENSE *.py *.yml *.yaml *.txt
1+
include LICENSE *.py *.yml *.yaml *.txt *.md
22
include Makefile
3-
include README.md
4-
graft .github
3+
global-exclude __pycache__
4+
global-exclude *.py[co]
55

66
# Tests
7-
include tox.ini
8-
recursive-include tests *.py
7+
recursive-include tests *
98

109
# Documentation
11-
include docs/Makefile
12-
recursive-include docs *.svg
13-
recursive-include docs *.py
14-
recursive-include docs *.rst
15-
recursive-include docs *.bat
10+
recursive-include docs *
1611
prune docs/_build

drf_user/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__title__ = "User - Django REST Framework"
44
__version__ = "0.0.8"
5-
__author__ = "101Loop"
5+
__author__ = "Himanshu Shankar"
66
__license__ = "GPLv3"
77

88
from django.conf import settings

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
name="drf_user",
88
version=__import__("drf_user").__version__,
99
author=__import__("drf_user").__author__,
10-
author_email="[email protected]",
10+
author_email="[email protected]",
11+
maintainer="Sumit Singh",
12+
maintainer_email="[email protected]",
1113
description="User APP for Django REST Framework with API Views",
1214
long_description=long_description,
1315
long_description_content_type="text/markdown",
@@ -22,6 +24,7 @@
2224
"Environment :: Web Environment",
2325
"Framework :: Django",
2426
"Framework :: Django :: 2.2",
27+
"Framework :: Django :: 3.0",
2528
"Framework :: Django :: 3.1",
2629
"Intended Audience :: Developers",
2730
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",

0 commit comments

Comments
 (0)