Skip to content

Commit efd0c23

Browse files
committed
fix package data
1 parent 8e01087 commit efd0c23

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

farms/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
FARMS version number
33
"""
44

5-
__version__ = "1.0.0"
5+
__version__ = "1.0.1"

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,18 @@ def run(self):
5454
url="https://github.com/NREL/farms",
5555
packages=find_packages(),
5656
package_dir={"farms": "farms"},
57+
package_data={'farms': ['earth_periodic_terms.csv',
58+
'sun_earth_radius_vector.csv']},
5759
include_package_data=True,
5860
license="BSD 3-Clause",
5961
zip_safe=False,
6062
keywords="farms",
61-
python_requires='>=3.6',
63+
python_requires='>=3.7',
6264
classifiers=[
6365
"Development Status :: 4 - Beta",
6466
"Intended Audience :: Science/Research",
6567
"License :: OSI Approved :: BSD License",
6668
"Natural Language :: English",
67-
"Programming Language :: Python :: 3.6",
6869
"Programming Language :: Python :: 3.7",
6970
"Programming Language :: Python :: 3.8",
7071
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)