-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (33 loc) · 1.15 KB
/
setup.py
File metadata and controls
41 lines (33 loc) · 1.15 KB
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
# Copyright (c) 2021-2025, NakaMetPy Develoers.
# Distributed under the terms of the BSD 3-Clause License.
# SPDX-License-Identifier: BSD-3-Clause
from setuptools import setup, find_packages
# install_requires = [
# 'numpy>=1.17.0',
# 'matplotlib>=3.0.0',
# 'nose>=1.2.0',]
def _requires_from_file(filename):
return open(filename).read().splitlines()
packages = ['src', 'tests']
console_scripts = [
# 'sample_lib_cli=sample_lib_cli.call:main',
]
setup(
name='nakametpy',
python_requires='>=3.7.0',
version='2026.1.0',
description='Meteorological modules for calculation and colormap.',
# packages=packages,
packages=find_packages('src'),
# install_requires=install_requires,
include_package_data=True,
package_dir={"": "src"},
install_requires=_requires_from_file('requirements.txt'),
url = 'https://github.com/muchojp/NakaMetPy',
author = 'muchojp',
author_email = 'contact.muchiwo@gmail.com',
license='BSD 3-clause',
# entry_points={'console_scripts': console_scripts},
long_description=open('README.md', encoding='UTF-8').read(),
long_description_content_type="text/markdown",
)