Skip to content

Commit 28dca14

Browse files
committed
Add MANIFEST.in to ensure requirements.txt included in distribution
1 parent b203ad5 commit 28dca14

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

MANIFEST.in

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
include *.pkl
2+
include *.mplstyle
3+
include *.txt
4+
include docs/source/conf.py
5+
include docs/source/*.rst
6+
include docs/source/notebooks/*.ipynb

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import find_packages, setup
22
import pathlib as pl
33

4-
VERSION = '0.1.1'
4+
VERSION = '0.1.2'
55
DISTNAME = "gumbi"
66
DESCRIPTION = "Gaussian Process Model Building Interface"
77
AUTHOR = "John Goertz"
@@ -44,7 +44,6 @@
4444
license=LICENSE,
4545
python_requires='>=3.9',
4646
packages=find_packages(),
47-
package_data={'': ['*.pkl', '*.mplstyle']},
4847
include_package_data=True,
4948
install_requires=install_reqs,
5049
classifiers=classifiers,

0 commit comments

Comments
 (0)