-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (23 loc) · 1015 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import setuptools
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='OBIA4RTM',
version = '1.0',
description = 'Object-Based Image Analysis Tools for Radiative Transfer Modelling',
long_description = long_description,
long_description_content_type = 'text/markdown',
author='Lukas Graf',
author_email ='[email protected]',
url = 'https://github.com/lukasValentin/OBIA4RTM',
include_package_data=True,
package_data={'OBIA4RTM': ['postgres.ini', 'landcover.cfg', 'prosail.txt', 'soil_relfectance.txt', 'obia4rtm_backend.cfg', 'OBIA4RTM_HOME', './SQL/Tables/*.sql', './SQL/Queries_Functions/*.sql']},
packages=setuptools.find_packages(),
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)