Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquesfize committed Jan 26, 2024
1 parent f9e452b commit 8b35a30
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@


root_dir = Path(__file__).absolute().parent
with (root_dir / 'VERSION').open() as f:
with (root_dir / "VERSION").open() as f:
version = f.read()
with (root_dir / 'README.rst').open() as f:
with (root_dir / "README.rst").open() as f:
long_description = f.read()


setuptools.setup(
name='usershub',
description='Application web de gestion centralisée des utilisateurs',
name="usershub",
description="Application web de gestion centralisée des utilisateurs",
long_description=long_description,
long_description_content_type='text/x-rst',
maintainer='Parcs nationaux des Écrins et des Cévennes',
maintainer_email='[email protected]',
url='https://github.com/PnX-SI/UsersHub',
long_description_content_type="text/x-rst",
maintainer="Parcs nationaux des Écrins et des Cévennes",
maintainer_email="[email protected]",
url="https://github.com/PnX-SI/UsersHub",
version=version,
packages=setuptools.find_packages(where='.', include=['app*']),
packages=setuptools.find_packages(where=".", include=["app*"]),
install_requires=(
list(open("requirements-common.in", "r"))
+ list(open("requirements-dependencies.in", "r"))
Expand Down

0 comments on commit 8b35a30

Please sign in to comment.