-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 1.09 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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open("gribflow/version.py") as f:
exec(f.read())
extra_setuptools_args = dict(
tests_require=['pytest']
)
setup(
name ='gribflow',
version = __version__,
author ='Brian McKenna, Stan Biryukov',
author_email ='brian.mckenna@tomorrow.io, stanley.biryukov@tomorrow.io',
url = 'git@github.com:stanbiryukov/gribflow.git',
install_requires = [requirements,],
package_data = {'gribflow':['resources/*']},
packages = find_packages(exclude=['gribflow/tests']),
license = 'MIT',
description='gribflow: Read NOAA gribs',
long_description= "gribflow makes NOAA model files usable for any downstream process",
keywords = ['optical-flow', 'computer-vision', 'grib', 'NOAA', 'data', 'weather'],
classifiers = [
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License"
],
**extra_setuptools_args
)