-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (29 loc) · 952 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
from setuptools import setup, find_packages
import pyipma
long_description = open("README.md").read()
setup(
name="pyipma",
version=pyipma.__version__,
license="MIT License",
url="https://github.com/dgomes/pyipma",
author="Diogo Gomes",
author_email="[email protected]",
description="Python library to retrieve information from Instituto Português do Mar e Atmosfera.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=["pyipma"],
zip_safe=True,
platforms="any",
install_requires=[
"aiohttp",
"geopy",
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)