-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (38 loc) · 1.58 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- coding: utf-8 -*-
import setuptools
def readme():
with open('README.md') as readme_file:
return readme_file.read()
requirements = [
'geopandas', # must be installed with Anaconda because of shapely dependency
'seaborn',
'spectral', # segment
'tqdm' # for progress bars
]
test_requirements = [
# TODO: put package test requirements here
]
setuptools.setup(name='hs_process',
version='0.0.4',
description=('An open-source Python package for geospatial '
'processing of aerial hyperspectral imagery'),
long_description=readme(),
long_description_content_type="text/markdown",
url='https://github.com/tnigon/hs_process',
author='Tyler J. Nigon',
author_email='[email protected]',
license='MIT',
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
],
package_data={'hs_process': ['examples/*', 'tests/*', 'data/*']},
include_package_data=True,
install_requires=requirements,
# test_suite='hs_process/tests',
tests_require=test_requirements,
zip_safe=False)