-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
49 lines (44 loc) · 1.12 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
44
45
46
47
48
49
#!/usr/bin/env python
import pathlib
from setuptools import setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
def readme():
with open('README.md') as f:
return f.read()
exec(open('octvi/_version.py').read())
setup(name='octvi',
version=__version__,
description='MODIS 8-day NDVI Downloader',
long_description=readme(),
long_description_content_type='text/markdown',
url="https://github.com/fdfoneill/octvi",
author="F. Dan O'Neill",
author_email='[email protected]',
license='MIT',
packages=['octvi'],
include_package_data=True,
# third-party dependencies
install_requires=[
'numpy>=1.18',
'h5py',
'gdal'
],
# classifiers
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
# tests
test_suite='nose.collector',
tests_require=[
'nose',
'numpy'
],
zip_safe=False,
# console scripts
entry_points = {
'console_scripts': ['octvidownload=octvi.command_line:main','octviconfig=octvi.config:main'],
}
)