-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 936 Bytes
/
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
from setuptools import setup, find_packages
exec(open('RTxploitation/version.py').read())
setup(
name=__package__,
version=__version__,
packages=find_packages(exclude=['build']),
package_data={'':['*.so','*h','*angles*','*.txt','*.csv','*.dat']},
# # If any package contains *.txt files, include them:
# '': ['*.txt'],
# 'lut': ['data/lut/*.nc'],
# 'aux': ['data/aux/*']
# },
include_package_data=True,
url='',
license='MIT',
author='T. Harmel',
author_email='[email protected]',
description='tools to simulate and visualize Radiative transfer related parameters',
# Dependent packages (distributions)
install_requires=['pandas','numpy','xarray','netCDF4','lmfit',
'matplotlib','docopt','Py6S'],
entry_points={
'console_scripts': [
#'RTxploitation = RTxploitation.visu:main'
]}
)