Skip to content

Commit ae03962

Browse files
committed
include manifest
1 parent 13c7ac8 commit ae03962

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

MANIFEST.in

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Include the README and CHANGELOG
2+
include *.md
3+
4+
# Include the license file
5+
include LICENSE
6+
7+
# exclude tests from package
8+
recursive-exclude tests *
9+
exclude tests
10+
11+
# Include the requirements
12+
include requirements.txt
13+
include requirements_tests.txt
14+
include pyproject.toml

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def run(self):
5050
packages=find_packages(exclude=["tests", "tests/*"]),
5151
python_requires=">=3",
5252
install_requires=requirements,
53-
download_url="https://github.com/CenterBioML/torchplot/archive/0.1.6.zip",
53+
download_url="https://github.com/CenterBioML/torchplot/archive/0.1.7.zip",
5454
classifiers=[
5555
"Environment :: Console",
5656
"Natural Language :: English",

torchplot/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
__name__ = "torchplot"
66
_this_year = time.strftime("%Y")
7-
__version__ = "0.1.6"
7+
__version__ = "0.1.7"
88
__author__ = "Nicki Skafte Detlefsen et al."
99
__author_email__ = "[email protected]"
1010
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)