-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (37 loc) · 1.1 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
42
'''
Created on Jul 9, 2021
@author: Lukas Graf (D-USYS, ETHZ)
'''
import setuptools
from setuptools import find_packages
from os import path
home = path.abspath(path.dirname(__file__))
with open(path.join(home, 'README.md'), encoding='utf-8') as readme:
long_description = readme.read()
setuptools.setup(
name='rtm_inv',
setup_requires=['setuptools_scm'],
use_scm_version={'version_scheme': 'post-release'},
description = '',
long_description = long_description,
long_description_content_type = 'text/markdown',
author='Lukas Graf (D-USYS, ETH Zurich)',
author_email ='NA',
url='NA',
packages=find_packages(),
include_package_data=True,
package_data={'': []},
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=['pandas',
'numpy',
'matplotlib',
'prosail',
'spectral',
'spart-python',
'openpyxl',
'lhsmdu'
]
)