37 lines
856 B
Python
37 lines
856 B
Python
from setuptools import setup
|
|
|
|
with open("README.md", "r", encoding="utf-8") as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name="opensmn",
|
|
version="1.0.0",
|
|
author="nix",
|
|
description="OpenSMN: Proxy API for Argentina's Servicio Meteorológico Nacional (SMN)",
|
|
url="https://github.com/nixietab/OpenSMN",
|
|
license="MIT",
|
|
py_modules=[
|
|
"main",
|
|
"server",
|
|
"healthcheck",
|
|
"tokenext",
|
|
],
|
|
install_requires=[
|
|
"flask",
|
|
"requests",
|
|
"selenium",
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"opensmn=main:main",
|
|
],
|
|
},
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Framework :: Flask",
|
|
],
|
|
python_requires=">=3.8",
|
|
)
|