-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 952 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 952 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
from setuptools import find_packages
from setuptools import setup
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
with open("requirements.txt") as f:
content = f.readlines()
requirements = [x.strip() for x in content if "git+" not in x]
setup(
name="inmetpy",
version="0.2.1",
description="A Python API Client to consume the API of the Brazilian National Institute of Meteorology - INMET",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
author="Felippe Galdino, Tobias Ferreira",
author_email="ocfgaldino@gmail.com",
license="GPLv3+",
url="https://github.com/ocfgaldino/inmetpy",
install_requires=requirements,
test_suite="tests",
include_package_data=True,
scripts=["scripts/inmetpy"],
zip_safe=False,
)