-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (38 loc) · 1.53 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages, Extension
import os
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Atmospheric Science",
]
with open("README.rst", "r", encoding="utf-8") as fp:
long_description = fp.read()
setup(
name="pyclmuapp",
version="0.0.1",
author="Junjie Yu",
author_email="[email protected]",
url="https://github.com/envdes/pyclmuapp",
description="A Python Package for Integration and Execution of Community Land Model Urban (CLMU) in a Containerized Environment",
long_description=long_description,
long_description_content_type="text/x-rst",
license="MIT",
classifiers=classifiers,
install_requires=['numpy', 'pandas', 'xarray', 'haversine', 'netcdf4', 'nc-time-axis', 'cdsapi'],
packages=find_packages(),
entry_points={
'console_scripts': [
'pyclmuapp=pyclmuapp._cli:main',
#'clmuapp=pyclmuapp.infer:main',
],
},
package_data={'pyclmuapp': ['config/*',
'config/cime_config/*',
'scripts/*',
'usp/*',
'usp/SourceMods/src.clm/*']}, # include all files in the config and scripts directory / specify the files to include file (MANIFEST.in)
)