diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-01-24 15:00:55 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-01-24 15:00:55 -0500 |
commit | 7b7133747b74f25de8088e6da592c03146c2dfa8 (patch) | |
tree | 6ec2676628a856690eac911ce455c5d9ad4cc3ff /setup.py | |
parent | 8c0dc693f2aad2e7f94dcf3e3a791bbd715be338 (diff) | |
download | cmd2-git-7b7133747b74f25de8088e6da592c03146c2dfa8.tar.gz |
Cleanup MANIFEST.in to reduce what gets put in package downloadable from PyPI
Also:
- Trivial simplification in setup.py
- Removed redundant copyright.rst file from docs since everything falls under the MIT License and there is already copyright statement in docs
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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'] |