summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-01-25 05:53:51 -0500
committerGitHub <noreply@github.com>2020-01-25 05:53:51 -0500
commit91ab799f293f0789bbb2759aaabc13c00da36b03 (patch)
tree6ec2676628a856690eac911ce455c5d9ad4cc3ff
parent8c0dc693f2aad2e7f94dcf3e3a791bbd715be338 (diff)
parent7b7133747b74f25de8088e6da592c03146c2dfa8 (diff)
downloadcmd2-git-91ab799f293f0789bbb2759aaabc13c00da36b03.tar.gz
Merge pull request #858 from python-cmd2/doc_cleanup
Cleanup MANIFEST.in to reduce whats in PyPI package
-rw-r--r--MANIFEST.in10
-rw-r--r--docs/copyright.rst6
-rw-r--r--docs/index.rst1
-rwxr-xr-xsetup.py2
4 files changed, 5 insertions, 14 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 07c2db6b..b0606391 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,8 +1,6 @@
-include LICENSE
-include README.md
-include CHANGELOG.md
-include CODEOWNERS
-include CONTRIBUTING.md
-include tox.ini
+include LICENSE README.md CHANGELOG.md CONTRIBUTING.md tox.ini Pipfile
recursive-include examples *
recursive-include tests *
+recursive-include docs *
+recursive-exclude docs/_build *
+exclude .appveyor.yml .gitignore .travis.yml azure-pipelines.yml CODEOWNERS tasks.py
diff --git a/docs/copyright.rst b/docs/copyright.rst
deleted file mode 100644
index 30cf255c..00000000
--- a/docs/copyright.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-Copyright
-=========
-
-The ``cmd2`` documentation is Copyright 2010-2020 by the `cmd2 contributors
-<https://github.com/python-cmd2/cmd2/graphs/contributors>`_ and is licensed
-under an `MIT License <https://github.com/python-cmd2/cmd2/blob/master/LICENSE>`_.
diff --git a/docs/index.rst b/docs/index.rst
index 14da2d20..386606bb 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -87,4 +87,3 @@ Meta
:caption: Meta
doc_conventions
- copyright
diff --git a/setup.py b/setup.py
index c1c4ec1b..860459a8 100755
--- a/setup.py
+++ b/setup.py
@@ -30,7 +30,7 @@ Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: Libraries :: Python Modules
""".splitlines()))) # noqa: E128
-SETUP_REQUIRES = ['setuptools_scm >= 3.0.0']
+SETUP_REQUIRES = ['setuptools_scm >= 3.0']
INSTALL_REQUIRES = ['attrs >= 16.3.0', 'colorama >= 0.3.7', 'pyperclip >= 1.6', 'setuptools >= 34.4', 'wcwidth >= 0.1.7']