Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
A669015 committed Sep 17, 2024
1 parent 893c7ce commit 7b1819d
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
from setuptools import setup, find_packages
from setuptools import find_packages, setup

# Build the long description from the README.md file
with open("README.md", "r") as readme:
long_description = readme.read()


# Build the requirements list from the requirements.txt file
with open('requirements.txt') as requirements:
with open("requirements.txt") as requirements:
required = requirements.read().splitlines()


# Instal the sources as a lib
setup(
name="py4cast",
version="0.1.0",
# version="0.1.0", # Should py4cast have a version number ?
author="PN-IA Météo France",
description="Library to train a variety of Neural Network architectures "
"on various weather forecasting datasets.",
description=(
"Library to train a variety of Neural Network architectures "
"on various weather forecasting datasets."
),
long_description=long_description,
packages=find_packages(),
python_requires='>=3.10',
install_requires=required
python_requires=">=3.10",
install_requires=required,
)

0 comments on commit 7b1819d

Please sign in to comment.