-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
33 lines (29 loc) · 1.14 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
#!/usr/bin/env python
import os
from codecs import open
from setuptools import setup, find_packages
import imp
__version__ = imp.load_source('cumulus_process.version', 'cumulus_process/version.py').__version__
# get dependencies
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'requirements.txt'), encoding='utf-8') as f:
all_reqs = f.read().split('\n')
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
#with open(os.path.join(here, 'requirements-dev.txt'), encoding='utf-8') as f:
# all_reqs = f.read().split('\n')
#tests_require = [x.strip() for x in all_reqs if 'git+' not in x]
setup(
name='cumulus_process',
version=__version__,
author='Matthew Hanson (matthewhanson), Alireza J (scisco)',
description='Library for creating Cumulus Process tasks in Python',
url='https://github.com/nasa-cumulus/cumulus-process-py',
license='Apache 2.0',
classifiers=[
'Programming Language :: Python :: 3.10'
],
packages=find_packages(exclude=['docs', 'tests*']),
include_package_data=True,
install_requires=install_requires,
#tests_require=tests_require,
)