-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 939 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
# @Author: charles
# @Date: 03-06-2019
# @Email: charles@goldspot.ca
# @Filename: setup.py
# @Last modified by: charles
# @Last modified time: 2020-12-21 22:12:18
import os
from setuptools import setup, find_packages
thelibFolder = os.path.dirname(os.path.realpath(__file__))
requirementPath = thelibFolder + '/requirements'
install_requires = [] # To populate by reading the requirements file
if os.path.isfile(requirementPath):
with open(requirementPath) as f:
install_requires = f.read().splitlines()
setup(
name='gims',
packages=find_packages(),
description='Command line interface for Geospatial IMage Segmentation',
version='0.0.1',
url='https://github.com/clberube/gims',
author='clberube',
author_email='charles.lafreniere-berube@polymtl.ca',
keywords=['deep learning', 'GIS', 'unet', 'segmentation'],
setup_requires=['numpy'],
install_requires=install_requires,
)