-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 836 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 836 Bytes
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
import os
from setuptools import setup, find_packages
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name = "S1_processing",
version = "0.0.1",
author = "Johannes Lohse",
author_email = "johannes.lohse@utas.edu.au",
description = ("Feature extraction and processing of S1 data."),
license = "The Ask Johannes Before You Do Anything License",
long_description=read('README.md'),
install_requires = [
'gdal',
'numpy',
'scipy',
'loguru',
'lxml',
'python-dotenv',
],
packages = find_packages(where='src'),
package_dir = {'': 'src'},
package_data = {'': ['*.xml', '.env']},
entry_points = {
'console_scripts': [
]
},
include_package_data=True,
)