-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
38 lines (34 loc) · 1.28 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
from os import path
from codecs import open as codopen
from setuptools import setup, find_packages
from dmrpp_generator import version
# get dependencies
with codopen(path.join(path.abspath(path.dirname(__file__)), 'requirements.txt'), encoding='utf-8') as f:
all_reqs = f.read().split('\n')
install_requires = [x.strip() for x in all_reqs]
setup(
name='dmrpp_generator',
version=version.__version__,
author='Abdelhak Marouane ([email protected])',
description='Library to generate DMRpp files from netCDF and HDF files, can be used with ECS activity',
url='https://github.com/ghrcdaac/dmrpp-generator',
license='Apache 2.0',
classifiers=[
'Framework :: Pytest',
'Topic :: Scientific/Engineering',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: Freeware',
'Programming Language :: Python :: 3.10',
],
entry_points={
'console_scripts': [
'dmrpp-process=dmrpp_generator.main:DMRPPGenerator.cli',
'dmrpp=dmrpp_generator.generate_and_validate_dmrpp:main'
]
},
packages=find_packages(exclude=['docs', 'tests*']),
package_data={"dmrpp_generator": ["*.yml"]},
include_package_data=True,
install_requires=install_requires,
)