Skip to content

Commit 93bbe55

Browse files
committed
Tweak MANIFEST and setup for publishing
* Couple areas had to be tweaked as we added and removed some stuff * Removed the additional license in the classifiers section as it is deprecated * Minor overall tweaks
1 parent 6aa25aa commit 93bbe55

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ tags
2626
# macOS-related
2727
.DS_Store
2828

29+
# Python-based virtual environment I use for publishing
30+
.venv-publish
31+
2932
# Shamelessly taken from here because I'm lazy:
3033
# https://github.com/github/gitignore/blob/main/Python.gitignore
3134

MANIFEST.in

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
include LICENSE
22
include README.md
3-
include TODO.md
3+
include CODE_OF_CONDUCT.md
4+
include CONTRIBUTING.md
45
recursive-include git_py_stats *.py
5-
recursive-include man *
6-
global-exclude *.pyc __pycache__/
6+
recursive-include man *.1
7+
global-exclude *.pyc __pycache__/ *.py[cod]
78
prune git_py_stats/tests
89

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
setup(
88
name="git-py-stats",
99
version="0.2.0",
10-
packages=find_packages(),
10+
packages=find_packages(exclude=("git_py_stats.tests", "git_py_stats.tests.*")),
1111
entry_points={
1212
"console_scripts": [
1313
"git-py-stats=git_py_stats.main:main",
@@ -22,10 +22,9 @@
2222
author="Tom Ice",
2323
author_email="contact@thomasice.com",
2424
license="MIT",
25-
url="https://github.com/tomice/git-py-stats",
25+
url="https://github.com/git-quick-stats/git-py-stats",
2626
classifiers=[
2727
"Programming Language :: Python :: 3",
28-
"License :: OSI Approved :: MIT License",
2928
"Operating System :: OS Independent",
3029
],
3130
python_requires=">=3.8",

0 commit comments

Comments
 (0)