Skip to content

Commit

Permalink
Run black on setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
troyraen committed Mar 11, 2025
1 parent 009ee5f commit 4e20062
Showing 1 changed file with 15 additions and 21 deletions.
36 changes: 15 additions & 21 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,43 +27,37 @@
# Get the long description from the README file
# long_description = (here / 'README.md').read_text(encoding='utf-8')

with open('docs/requirements.txt', encoding='utf-8') as f:
with open("docs/requirements.txt", encoding="utf-8") as f:
requirements = f.read().splitlines()

setup(
name='pitt_google_broker', # Required
version='0.5.0', # Required
description='A Google Cloud-based astronomical alert broker.',
name="pitt_google_broker", # Required
version="0.5.0", # Required
description="A Google Cloud-based astronomical alert broker.",
# long_description=long_description,
# long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
],
keywords='astronomy, alert broker',

url='https://github.com/mwvgroup/Pitt-Google-Broker',
author='Troy Raen',
author_email='[email protected]',

keywords="astronomy, alert broker",
url="https://github.com/mwvgroup/Pitt-Google-Broker",
author="Troy Raen",
author_email="[email protected]",
packages=find_packages(), # Required

# For an analysis of "install_requires" vs pip's requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=requirements,

# https://setuptools.readthedocs.io/en/latest/userguide/dependency_management.html#optional-dependencies
# extras_require={
# "beam": ["apache_beam[gcp]"],
# },

# python_requires='>=3.6, <4',

# If there are data files included in your packages that need to be
# installed, specify them here.
# package_data={ # Optional
Expand Down

0 comments on commit 4e20062

Please sign in to comment.