forked from bakobako/pirate-weather-python
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 1000 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 1000 Bytes
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
import os
from setuptools import find_packages, setup
__version__ = "1.0.0"
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.md")) as f:
README = f.read()
repo_url = "https://github.com/Pirate-Weather/pirate-weather-python"
setup(
version=__version__,
name="pirateweather",
packages=find_packages(),
install_requires=["requests==2.33.0", "pytz==2026.1.post1", "aiohttp==3.13.4"],
description="The Pirate Weather API wrapper",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Pirate-Weather",
url=repo_url,
download_url=f"{repo_url}/archive/{__version__}.tar.gz",
license="GPLv3 License",
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)