-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
25 lines (23 loc) · 812 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="raster4ml",
version="0.1.4",
author="Sourav Bhadra",
author_email='[email protected]',
description="A geospatial raster processing library for machine learning",
long_description=read('README.md'),
long_description_content_type="text/markdown",
url='https://github.com/remotesensinglab/raster4ml',
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
py_modules=["raster4ml"],
install_requires=read('requirements.txt').splitlines()
)