Skip to content

Commit 827efb4

Browse files
committed
Added MANIFEST.in.
1 parent ec01139 commit 827efb4

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include = requirements.txt

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
with open(f"{os.path.dirname(os.path.abspath(__file__))}/README.md") as readme:
88
setuptools.setup(
99
name="3-py",
10-
version="2.0.0",
10+
version="2.0.1",
1111
description="`.gitignore`-aware tree tool written in Python",
1212
long_description=readme.read(),
1313
long_description_content_type="text/markdown",

tests.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@ def test_simple(self):
2323
├── examples
2424
│ └── 3.png
2525
├── LICENSE.md
26+
├── MANIFEST.in
2627
├── pyproject.toml
2728
├── README.md
2829
├── requirements.txt
2930
├── setup.py
3031
└── tests.py
3132
32-
1 directories, 9 files
33+
1 directories, 10 files
3334
""".lstrip().encode(),
3435
)
3536

@@ -59,12 +60,13 @@ def test_all(self):
5960
├── examples
6061
│ └── 3.png
6162
├── LICENSE.md
63+
├── MANIFEST.in
6264
├── pyproject.toml
6365
├── README.md
6466
├── requirements.txt
6567
├── setup.py
6668
└── tests.py
6769
68-
3 directories, 15 files
70+
3 directories, 16 files
6971
""".lstrip().encode(),
7072
)

0 commit comments

Comments
 (0)