-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.02 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.02 KB
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
33
34
import setuptools
with open("README.md") as r:
readme=r.read()
for line in open("satiopst\__init__.py").read().splitlines():
if line.startswith('__version__'):
delim = '"' if '"' in line else "'"
var=str(line.split(delim)[1])
setuptools.setup(
name="SatIOpsT",
version=var,
author="GeoEspacioTech Pvt. Ltd., Subhadip Datta, Soumyadeep Dutta",
author_email="[email protected]",
description="Satellite Image Operations Toolbox",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/SubhadipDatta/SatIOpsT/wiki",
packages=setuptools.find_packages(exclude=('tests', 'docs')),
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"geopandas",
"rasterio",
"scipy",
"pandas",
"numpy",
],
include_package_data=True,
)