-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (44 loc) · 1.52 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
50
51
52
53
54
from setuptools import setup, find_packages
import sys
from typing import (
List,
)
from aoirint_jmapy import __VERSION__ as VERSION
install_requires: List[str] = [
# dependencies like requirements.txt
'requests',
'pydantic',
# 'numpy>=1.20.2', # https://pypi.org/project/numpy/
]
setup(
name='aoirint_jmapy',
version=VERSION, # '0.1.0-alpha', # == 0.1.0-alpha0 == 0.1.0a0
# license='MIT',
# packages=[ 'PACKAGE_NAME', ],
packages=find_packages(),
include_package_data=True,
# entry_points = {
# 'console_scripts': [
# # create `main` function in PACKAGE_NAME/scripts/my_command_module.py
# 'my_command_name = PACKAGE_NAME.scripts.my_command_module:main',
# ],
# },
install_requires=install_requires,
author='aoirint',
author_email='aoirint@gmail.com',
url='https://github.com/aoirint/aoirint_jmapy',
description='Unofficial JMA weather forecast API wrapper in Python',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
# 'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)