Skip to content

Commit

Permalink
MANIFEST file
Browse files Browse the repository at this point in the history
  • Loading branch information
Sceki committed Dec 2, 2024
1 parent 594b34a commit 26100a2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include karman/*.pk
include karman/*.csv
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
from setuptools import setup, find_packages
PACKAGE_NAME = 'karman'
MINIMUM_PYTHON_VERSION = 3, 8
MINIMUM_PYTHON_VERSION = 3, 9

with open('README.md', 'r') as f:
long_description = f.read()
Expand Down Expand Up @@ -39,4 +39,7 @@ def read_package_variable(key):
extras_require={'dev': ['pytest', 'coverage', 'pytest-xdist','netcdf4','cftime','flake8']},
classifiers=['License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Programming Language :: Python :: 3'],
include_package_data=True,
package_data={
"karman": ["*.pk", "*.csv"], # Include all CSV files in the karman directory
},
)

0 comments on commit 26100a2

Please sign in to comment.