Browse Source

updated setup.py

main
Bill Ladwig 9 years ago
parent
commit
f6743f64d6
  1. 16
      setup.py

16
setup.py

@ -45,17 +45,23 @@ numpy.distutils.core.setup(
install_requires = requirements, install_requires = requirements,
classifiers = ["Development Status :: 3 - Alpha", classifiers = ["Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research", "Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved", "License :: OSI Approved",
"Programming Language :: Python", "Programming Language :: Fortran",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Atmospheric Science", "Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development",
"Operating System :: OS Independent"], "Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows"],
name = "wrf", name = "wrf",
version = __version__, version = __version__,
packages = setuptools.find_packages("src"), packages = setuptools.find_packages("src"),
ext_modules = [ext1], ext_modules = [ext1],
package_dir={"" : "src"}, package_dir = {"" : "src"},
#namespace_packages=["wrf"], #namespace_packages=["wrf"],
# Note: If this doesn't work, you need to add the file to MANIFEST # Note: If this doesn't work, you need to add the file to MANIFEST
package_data={"wrf" : ["data/psadilookup.dat"]}, package_data={"wrf" : ["data/psadilookup.dat"]},

Loading…
Cancel
Save