-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (23 loc) · 816 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
from setuptools import setup, find_packages
from typing import List
def readme():
with open('README.md') as f:
return f.read()
def get_requirements(file_path: str) -> List[str]:
requirements = []
with open(file_path) as f:
requirements = f.readlines()
requirements = [req.replace("\n", "") for req in requirements]
return requirements
setup(
name='geospatial-toolset',
version='0.1.0',
description='Geospatial Utilities for Remote Sensing and GIS Application',
author='Debabrata Ghorai, Ph.D.',
author_email='ghoraideb@gmail.com',
url='https://github.com/dghorai',
install_requires=get_requirements('requirements.txt'),
packages=find_packages(),
license='MIT License',
long_description=readme()
)