-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (28 loc) · 981 Bytes
/
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
import os
from setuptools import find_packages, setup
__version__ = "0.0.6"
with open(os.path.join(
os.path.abspath(os.path.dirname(__file__)), "README.md")
) as f:
README = f.read()
repo_url = "https://github.com/bakobako/pirate-weather-python"
setup(
version=__version__,
name="pirate-weather-python",
packages=find_packages(),
install_requires=["requests==2.21.0", "pytz==2019.1", "aiohttp==3.5.4"],
description="The Pirate Weather API wrapper",
long_description="View on github",
author="bakobako",
author_email="[email protected]",
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.6",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)